Skip to content

Commit

Permalink
update change log
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Aug 2, 2024
1 parent eb01cdc commit 529946d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ speclite Change Log
-----------------

- Fix ``scipy.integrate`` name changes; pin Pillow version so unit tests work (PR `#91`_).
- *Planned*: fix several remaining issues.
- Fix issues related to :meth:`~specutils.filters.FilterSequence.pad_spectrum` and
:meth:`~specutils.filters.FilterResponse.get_ab_maggies`; allow ``pip install``
on more recent Python versions;
replace deprecated ``matplotlib`` colormap function (PR `#92`_).

.. _`#91`: https://github.com/desihub/speclite/pull/91
.. _`#92`: https://github.com/desihub/speclite/pull/92

0.19 (2024-04-30)
-----------------
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@
if eval(setup_cfg.get('edit_on_github')):
extensions += ['sphinx_astropy.ext.edit_on_github']

versionmod = __import__(setup_cfg['package_name'] + '.version')
versionmod = import_module(setup_cfg['package_name'] + '.version')
edit_on_github_project = setup_cfg['github_project']
if versionmod.version.release:
edit_on_github_branch = "v" + versionmod.version.version
if versionmod.release:
edit_on_github_branch = "v" + versionmod.version
else:
edit_on_github_branch = "master"
edit_on_github_branch = "main"

edit_on_github_source_root = ""
edit_on_github_doc_root = "docs"
Expand Down

0 comments on commit 529946d

Please sign in to comment.