From c83c4c0117bb06f3fe6c88a3820aa9bce186caf5 Mon Sep 17 00:00:00 2001 From: Thomas Sundvoll Date: Thu, 12 Sep 2024 17:53:41 +0200 Subject: [PATCH] Make ISAR compatible with Python 3.10 again --- .github/workflows/pythonpackage.yml | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 865c7e99..85e1a492 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: run: | pip install -r requirements.txt -e .[dev] - - name: Install dependencies based on the pyproject.toml file (for 3.9 and 3.11) + - name: Install dependencies based on the pyproject.toml file (for Python 3.9-3.11) if: ${{matrix.python-version != '3.12'}} run: | pip install -e .[dev] diff --git a/pyproject.toml b/pyproject.toml index d77aa3df..96b46b07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ classifiers = [ "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering",