From 906026974df51f4aef0e4f7dfc854a7e7f9c086a Mon Sep 17 00:00:00 2001 From: Benjamin Alan Weaver Date: Thu, 14 Sep 2023 12:45:20 -0700 Subject: [PATCH] Update change log; remove appveyor.yml --- CHANGES.rst | 79 ++++++++++++++++++++++++++++++++++++---------------- appveyor.yml | 52 ---------------------------------- 2 files changed, 55 insertions(+), 76 deletions(-) delete mode 100644 appveyor.yml diff --git a/CHANGES.rst b/CHANGES.rst index b39caa1..6242837 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,79 +1,110 @@ +=================== +speclite Change Log +=================== + 0.17 (unreleased) ----------------- - - Add 2MASS JHKs filter curves. +- Add 2MASS JHKs filter curves (PR `#79`_). + +.. _`#79`: https://github.com/desihub/speclite/pull/79 0.16 (2022-07-19) ----------------- -- Add new SDSS filters which include atmospheric extinction (airmass=1.3). +- Add new SDSS filters which include atmospheric extinction (airmass=1.3) (PR `#76`_). + +.. _`#76`: https://github.com/desihub/speclite/pull/76 0.15 (2022-01-10) ----------------- - - Fix documentation builds. +- Fix documentation builds and other deprecation warnings (PR `#73`_, `#72`_). + +.. _`#73`: https://github.com/desihub/speclite/pull/73 +.. _`#72`: https://github.com/desihub/speclite/pull/72 0.14 (2021-09-09) ----------------- -- Update SDSS filter metadata to reflect that no atmospheric extinction is included. +- Update SDSS filter metadata to reflect that no atmospheric extinction is included (602e805_). +- Fix deprecated Astropy utilities (PR `#68`_). +- Migrate to GitHub Actions (PR `#65`_). + +.. _602e805: https://github.com/desihub/speclite/commit/602e80562615c11e86429576b2f9b996efe39050 +.. _`#68`: https://github.com/desihub/speclite/pull/68 +.. _`#65`: https://github.com/desihub/speclite/pull/65 0.13 (2021-01-18) ----------------- -- Add GAIA DR2 filter curves. +- Add GAIA DR2 filter curves (PR `#62`_). + +.. _`#62`: https://github.com/desihub/speclite/pull/62 0.12 (2021-01-15) ----------------- -- Add DECam DR1 filter curves with and without X=1.2 atmosphere. +- Add DECam DR1 filter curves with and without X=1.2 atmosphere (PR `#61`_). + +.. _`#61`: https://github.com/desihub/speclite/pull/61 0.11 (2020-11-23) ----------------- -- Another attempt to fix broken astropy_helpers in pypi release. +- Another attempt to fix broken ``astropy_helpers`` in PyPI release. 0.10 (2020-11-23) ----------------- -- Fix broken 0.9 pypi release. +- Fix broken 0.9 PyPI release. 0.9 (2020-07-31) ---------------- -- Minor updates for py3.8 support (#55) -- fix installation problems (#56) +- Minor updates for Python 3.8 support (PR `#55`_). +- Fix installation problems (`#56`_). + +.. _`#56`: https://github.com/desihub/speclite/pull/56 +.. _`#55`: https://github.com/desihub/speclite/pull/55 0.8 (2018-09-11) ---------------- - Add MzLS-z, BASS-g, BASS-r filters used by DESI imaging surveys. -- Update astropy-helpers to v2.0.6. +- Update ``astropy_helpers`` to v2.0.6. 0.7 (2017-10-03) ---------------- -- Update to astropy_helpers v2.0.1 (#32). +- Update to ``astropy_helpers`` v2.0.1 (PR `#32`_). + +.. _`#32`: https://github.com/desihub/speclite/pull/32 0.6 (2017-10-02) ---------------- -- Remove tests against python 3.3 and numpy 1.7. -- Add HSC filters (#31). -- Save filter curves at full machine precision (#27). -- Update to latest astropy affiliate package template. -- Add support and travis testing for python 3.6. -- Add support for band shifted filters (#20). -- Clean up package-level imports (#23). +- Remove tests against Python 3.3 and Numpy 1.7. +- Add HSC filters (PR `#31`_). +- Save filter curves at full machine precision (PR `#27`_). +- Update to latest Astropy affiliate package template. +- Add support and travis testing for Python 3.6. +- Add support for band shifted filters (PR `#20`_). +- Clean up package-level imports (PR `#23`_). + +.. _`#31`: https://github.com/desihub/speclite/pull/31 +.. _`#27`: https://github.com/desihub/speclite/pull/27 +.. _`#23`: https://github.com/desihub/speclite/pull/23 +.. _`#20`: https://github.com/desihub/speclite/pull/20 0.5 (2016-08-22) ---------------- -- Update to latest astropy affiliate package template. -- Drop support for python 2.6 and add support for python 3.5. -- Add testing against LTS release of astropy. -- Drop testing against numpy 1.6 and add numpy 1.11. -- Update readthedocs URLs (.org -> .io). +- Update to latest Astropy affiliate package template. +- Drop support for Python 2.6 and add support for Python 3.5. +- Add testing against LTS release of Astropy. +- Drop testing against Numpy 1.6 and add Numpy 1.11. +- Update ReadTheDocs URLs (.org -> .io). - Add LSST filter response curves. 0.4 (2016-02-17) diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 26e39a2..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,52 +0,0 @@ -# AppVeyor.com is a Continuous Integration service to build and run tests under -# Windows - -environment: - - global: - PYTHON: "C:\\conda" - MINICONDA_VERSION: "latest" - CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci-helpers\\appveyor\\windows_sdk.cmd" - PYTHON_ARCH: "64" # needs to be set for CMD_IN_ENV to succeed. If a mix - # of 32 bit and 64 bit builds are needed, move this - # to the matrix section. - - # For this package-template, we include examples of Cython modules, - # so Cython is required for testing. If your package does not include - # Cython code, you can set CONDA_DEPENDENCIES='' - CONDA_DEPENDENCIES: "scipy pyyaml matplotlib" - - # Conda packages for affiliated packages are hosted in channel - # "astropy" while builds for astropy LTS with recent numpy versions - # are in astropy-ci-extras. If your package uses either of these, - # add the channels to CONDA_CHANNELS along with any other channels - # you want to use. - # CONDA_CHANNELS: "astropy-ci-extras astropy" - - matrix: - - # We test Python 2.7 and 3.6 because 2.7 is the supported Python 2 - # release of Astropy and Python 3.6 is the latest Python 3 release. - - - PYTHON_VERSION: "2.7" - ASTROPY_VERSION: "stable" - NUMPY_VERSION: "stable" - - - PYTHON_VERSION: "3.6" - ASTROPY_VERSION: "stable" - NUMPY_VERSION: "stable" - -platform: - -x64 - -install: - - "git clone git://github.com/astropy/ci-helpers.git" - - "powershell ci-helpers/appveyor/install-miniconda.ps1" - - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - - "activate test" - -# Not a .NET project, we build the package in the install step instead -build: false - -test_script: - - "%CMD_IN_ENV% python setup.py test"