Skip to content

Commit

Permalink
Merge pull request #47 from sdss/newrel
Browse files Browse the repository at this point in the history
Tag and release 3.0.2
  • Loading branch information
havok2063 authored Nov 2, 2023
2 parents 13320c7 + 1b0682a commit 8710443
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.2dev
current_version = 3.0.3dev
commit = True
tag = False
tag_name = {new_version}
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ Change Log

This document records the main changes to the sdss_access code.

3.0.2 (unreleased)
3.0.3 (unreleased)
------------------

3.0.2 (11-2-2023)
------------------
- Add support for .fz compression
- Release for IPL-3

3.0.1 (2023-06-17)
------------------
Expand Down
9 changes: 9 additions & 0 deletions docs/sphinx/path_defs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,13 @@ IPL2

.. datamodel:: sdss_access.path.path:Path
:prog: IPL2
:templates:

.. _ipl3:

IPL3
----

.. datamodel:: sdss_access.path.path:Path
:prog: IPL3
:templates:
4 changes: 4 additions & 0 deletions docs/sphinx/path_evolution.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ Internal Data Releases
Internal Product Launches (IPLs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. changelog:: sdss_access.path.changelog:compute_changelog
:prog: changes
:drs: ipl3, ipl2

.. changelog:: sdss_access.path.changelog:compute_changelog
:prog: changes
:drs: ipl2, ipl1
Expand Down
1 change: 1 addition & 0 deletions docs/sphinx/paths.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Internal SDSS Release Paths

* :ref:`IPL-1 <ipl1>` - Internal Product Launch 1
* :ref:`IPL-2 <ipl2>` - Internal Product Launch 2
* :ref:`IPL-3 <ipl3>` - Internal Product Launch 3


Latest Path Evolution
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = sdss-access
version = 3.0.2dev
version = 3.0.3dev
author = Brian Cherinka
author_email = [email protected]
description = Package to dynamically build filepaths and access all SDSS SAS products
Expand Down
2 changes: 1 addition & 1 deletion tests/path/test_sdss5.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def test_special_function(self, path, name, special, keys, exp):
assert exp in full

@pytest.mark.parametrize('name, keys', [('specLite', ['fieldid', 'catalogid', 'run2d', 'mjd']),
('mwmStar', ['cat_id', 'apred', 'v_astra', 'component', 'run2d']),])
('mwmStar', ['component', 'sdss_id', 'v_astra']),])
def test_lookup_keys(self, path, name, keys):
realkeys = path.lookup_keys(name)
assert set(keys) == set(realkeys)
Expand Down

0 comments on commit 8710443

Please sign in to comment.