Skip to content

Commit

Permalink
Upgrade supported Python version to 3.12 (#154)
Browse files Browse the repository at this point in the history
Address #106.
  • Loading branch information
kvrigor authored Jul 11, 2024
1 parent 809b2e0 commit 27358bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "sympde"
version = "0.18.3"
description = "Symbolic calculus for partial differential equations (and variational forms)"
readme = "README.rst"
requires-python = ">= 3.8, < 3.12"
requires-python = ">= 3.8, < 3.13"
license = {file = "LICENSE"}
authors = [{name = "Ahmed Ratnani", email = "[email protected]"}]
maintainers = [
Expand Down

0 comments on commit 27358bf

Please sign in to comment.