Skip to content

Commit

Permalink
Support Python 3.11, 3.12, and 3.13 (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
schroedtert authored Nov 3, 2024
1 parent e18bfce commit 0fd1969
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.10' ]
python-version: [ '3.11' ]
runs-on: ${{ matrix.os }}
continue-on-error: true

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-12, macos-14, windows-latest ]
python-version: [ '3.10' ]
python-version: [ '3.11' ]
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-12, macos-14, windows-latest ]
python-version: [ '3.10', '3.11' , '3.12']
python-version: [ '3.11', '3.12' , '3.13']
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.10' ]
python-version: [ '3.11' ]
runs-on: ${{ matrix.os }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ If you use *PedPy* in your work, please cite it using the following information

### Setup Python

For setting up your Python Environment a Python version >= 3.10 is recommended (our code is tested with 3.10, 3.11, and 3.12).
For setting up your Python Environment a Python version >= 3.11 is recommended (our code is tested with 3.11, 3.12, and 3.13).
To avoid conflicts with other libraries/applications the usage of virtual environments is recommended, see [Python Documentation](https://docs.python.org/3/library/venv.html) for more detail.

### Installing PedPy
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
Expand All @@ -27,7 +27,7 @@ dependencies = [
"h5py~=3.11",
]

requires-python = ">=3.10"
requires-python = ">=3.11"

[project.urls]
homepage = "https://pedpy.readthedocs.io/"
Expand Down

0 comments on commit 0fd1969

Please sign in to comment.