Ver a proveniência
fix: compatibility with Python 3.12 (#68)
* ci(tests): test with Python 3.12
* fix: compatibility with NumPy 1.26
tags/v1.0.10
Deuchnord
há 1 ano
committed by
GitHub
ascendente
cometimento
1d84b89e56
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
2 ficheiros alterados com
2 adições e
1 eliminações
-
.github/workflows/tests.yml
-
pyproject.toml
|
|
@@ -22,6 +22,7 @@ jobs: |
|
|
|
- '3.9' |
|
|
|
- '3.10' |
|
|
|
- '3.11' |
|
|
|
- '3.12' |
|
|
|
|
|
|
|
name: Python ${{ matrix.python_version }} (${{ matrix.os }}) |
|
|
|
steps: |
|
|
|
|
|
@@ -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" |
|
|
|