From 8aae0a8d88fa47d2872c00c4893bef83390e1170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Wed, 26 Oct 2022 11:49:34 +0200 Subject: [PATCH] build: add support for Python 3.11 BREAKING CHANGE: Python 3.7 is npt supported anymore. --- .github/workflows/tests.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 97ba64b..5c518ef 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 1d90d66..13ece62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"