Skip to content

Commit

Permalink
Make ISAR compatible with Python 3.10 again
Browse files Browse the repository at this point in the history
  • Loading branch information
tsundvoll committed Sep 16, 2024
1 parent 3ee4ae5 commit c83c4c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c83c4c0

Please sign in to comment.