Skip to content

Commit

Permalink
Drop support for Python 3.9, relax some dependencies (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
teutoburg authored Oct 25, 2024
2 parents 61c98d4 + 543b37a commit 60df4f9
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 123 deletions.
160 changes: 47 additions & 113 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ repository = "https://github.com/AstarVienna/ScopeSim_Templates/"
documentation = "https://scopesim-templates.readthedocs.io/"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
numpy = "^1.26.3"
scipy = "^1.11.4"
astropy = "^5.3.4"
scipy = "^1.14.1"
astropy = ">=5.3.4, <=6.0.1"
matplotlib = "^3.8.2"

docutils = "^0.19"
beautifulsoup4 = "^4.12.1"
lxml = "^4.9.3"
lxml = ">=4.9.3, <=5.2.2"
pyyaml = "^6.0.1"
synphot = "^1.3.post0"
synphot = "^1.3.post0" # bump when updating sim090

scopesim = "^0.8.4"
pyckles = ">=0.3.0"
spextra = ">=0.40.0"
astar-utils = ">=0.2.2" # Set to 0.3.0 when updating py310
scopesim = ">=0.8.4" # bump when updating sim090
pyckles = ">=0.3.0" # bump when updating sim090
spextra = ">=0.40.0" # bump when updating sim090
astar-utils = ">=0.2.2" # Set to 0.3.0 when updating sim090

[tool.poetry.group.dev]
optional = true
Expand All @@ -46,7 +46,7 @@ jupytext = "^1.10.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
skycalc_cli = "*"
skycalc_cli = "*" # consider removal

[tool.poetry.group.docs]
optional = true
Expand Down

0 comments on commit 60df4f9

Please sign in to comment.