From d84d11283bb9f1d55a078d36a352b22ce69eab06 Mon Sep 17 00:00:00 2001 From: Massimiliano Lincetto Date: Thu, 24 Oct 2024 16:29:05 +0200 Subject: [PATCH] tentative adding support for python 3.12 and 3.13 --- .github/workflows/continous_integration.yml | 2 +- .github/workflows/lint.yml | 2 +- pyproject.toml | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continous_integration.yml b/.github/workflows/continous_integration.yml index f9623a56..90a8534d 100644 --- a/.github/workflows/continous_integration.yml +++ b/.github/workflows/continous_integration.yml @@ -26,7 +26,7 @@ jobs: # Specify the python versions to test strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8d9b7262..2304e786 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' # Replace '3.x' with your desired Python version + python-version: '3.12' # Replace '3.x' with your desired Python version - name: Install poetry run: pip install poetry # You may need additional dependencies here - name: Install flarestack diff --git a/pyproject.toml b/pyproject.toml index 71002d15..f6bf952c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,10 +20,12 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] [tool.poetry.dependencies] -python = ">=3.9, <3.12" +python = ">=3.9, <3.14" astropy = ">=5.1,<7.0" black = ">=23,<25" coveralls = ">=3.3.1,<5.0.0"