Skip to content

Commit

Permalink
fix: compatibility with Python 3.12 (#68)
Browse files Browse the repository at this point in the history
* ci(tests): test with Python 3.12

* fix: compatibility with NumPy 1.26
  • Loading branch information
Deuchnord committed Nov 11, 2023
1 parent 29970c5 commit 1d84b89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'

name: Python ${{ matrix.python_version }} (${{ matrix.os }})
steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ python = "^3.8"
skyfield = "^1.21"
numpy = [
{ version = "<1.25", python = "3.8.*" },
{ version = "^1.25", python = "^3.9" },
{ version = "^1.25", python = ">=3.9,<3.13" },
]
skyfield-data = ">=3,<6"
python-dateutil = "^2.8"
Expand Down

0 comments on commit 1d84b89

Please sign in to comment.