Skip to content

Commit

Permalink
Reintroduce support for python 3.8 and 3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
JSKenyon committed Nov 28, 2024
1 parent 0e6b4cf commit a68d71f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@ packages = [


[tool.poetry.dependencies]
python = "^3.10"
python = "^3.8"
astro-kittens = "^1.4.6"
numpy = [
{ version = ">=2.0.0", python = ">=3.12"},
{ version = "<2.0.0", python = ">=3.10, <3.12"}
{ version = "<2.0.0", python = ">=3.8, <3.12"}
]
scipy = "*"
astlib = [
{ version = ">=0.12.0", python = ">=3.12"},
{ version = "<=0.11.10", python = ">=3.10, <3.12"}
{ version = "<=0.11.10", python = ">=3.8, <3.12"},
{ version = "<=0.11.8", python = "<=3.8"}
]
astropy = "*"
future = "*"
Expand Down

0 comments on commit a68d71f

Please sign in to comment.