소스 검색
build: add support for Python 3.11 (#58)
BREAKING CHANGE: Python 3.7 is npt supported anymore.
tags/v1.0.7
Deuchnord
2 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
2개의 변경된 파일과
2개의 추가작업 그리고
2개의 파일을 삭제
-
.github/workflows/tests.yml
-
pyproject.toml
|
|
@@ -18,10 +18,10 @@ jobs: |
|
|
|
- macos-11.0 |
|
|
|
- windows-latest |
|
|
|
python_version: |
|
|
|
- '3.7' |
|
|
|
- '3.8' |
|
|
|
- '3.9' |
|
|
|
- '3.10' |
|
|
|
- '3.11' |
|
|
|
|
|
|
|
name: Doc tests (Python ${{ matrix.python_version }} on ${{ matrix.os }}) |
|
|
|
steps: |
|
|
|
|
|
@@ -19,7 +19,7 @@ classifiers = [ |
|
|
|
] |
|
|
|
|
|
|
|
[tool.poetry.dependencies] |
|
|
|
python = ">=3.7,<3.11" |
|
|
|
python = ">=3.8,<3.12" |
|
|
|
skyfield = "^1.21" |
|
|
|
skyfield-data = ">=3,<5" |
|
|
|
python-dateutil = "^2.8" |
|
|
|