Browse Source

build: add support for Python 3.11 (#58)

BREAKING CHANGE: Python 3.7 is npt supported anymore.
tags/v1.0.7
Deuchnord 1 year ago
committed by GitHub
parent
commit
807be7def3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .github/workflows/tests.yml
  2. +1
    -1
      pyproject.toml

+ 1
- 1
.github/workflows/tests.yml View File

@@ -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:


+ 1
- 1
pyproject.toml View File

@@ -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"


Loading…
Cancel
Save