Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD: Set astropy latest supported version to 4.3 and speclite minversion to 0.14 #486

Merged
merged 4 commits into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ packages = find:
python_requires = >=3.6
setup_requires = setuptools_scm
install_requires =
astropy>=4,<4.3
astropy>=4
networkx
numpy
scipy
Expand All @@ -31,14 +31,14 @@ console_scripts =
test =
pytest-astropy
pytest-rerunfailures
speclite>=0.11
speclite>=0.14
all =
h5py
speclite>=0.11
speclite>=0.14
docs =
sphinx-astropy
matplotlib
speclite>=0.11
speclite>=0.14

[options.package_data]
skypy = data/*,data/*/*,*/tests/data/*
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist =
py{36,37,38,39}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
py{36,37,38,39}-test-numpy{116,117,118,119,120,121}
py{36,37,38,39}-test-scipy{12,13,14,15,16,17}
py{36,37,38,39}-test-astropy{40,41,42}
py{36,37,38,39}-test-astropy{40,41,42,43}
build_docs
linkcheck
codestyle
Expand Down Expand Up @@ -53,6 +53,7 @@ description =
astropy40: with astropy 4.0.*
astropy41: with astropy 4.1.*
astropy42: with astropy 4.2.*
astropy43: with astropy 4.3.*

# The following provides some specific pinnings for key packages
deps =
Expand All @@ -74,12 +75,13 @@ deps =
astropy40: astropy==4.0.*
astropy41: astropy==4.1.*
astropy42: astropy==4.2.*
astropy43: astropy==4.3.*

dev: :NIGHTLY:numpy
dev: :NIGHTLY:scipy
dev: git+https://github.com/astropy/astropy.git#egg=astropy

latest: astropy==4.2.*
latest: astropy==4.3.*
latest: numpy==1.21.*
latest: scipy==1.7.*

Expand Down