From 807be7def324c1accdad6dc35738624589eb7b06 Mon Sep 17 00:00:00 2001 From: Deuchnord Date: Mon, 7 Nov 2022 14:57:40 +0100 Subject: [PATCH] build: add support for Python 3.11 (#58) 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"