Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
id: build-docs
uses: ./.github/actions/build-docs
with:
python-version: "3.13"
python-version: "3.14"
docs-requirements-path: "docs/requirements.txt"
docs-source-path: "docs/source"
docs-build-path: "docs/build"
Expand Down
54 changes: 21 additions & 33 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install dependencies
run: pip install ruff
- name: Install clang-format-19
Expand All @@ -48,10 +48,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build & test with ${{ matrix.toolchain.cc }} / ${{ matrix.toolchain.cxx }}
Expand All @@ -65,10 +65,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install jupedsim
run: |
python3 -m pip install .
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: 3.13
python-version: 3.14
- name: Install dependencies
run: python -m pip install wheel build setuptools
- name: Build sdist
Expand All @@ -173,54 +173,42 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
cibw_archs: "x86_64"
cibw_build: "cp310-*"
- os: ubuntu-latest
cibw_archs: "x86_64"
cibw_build: "cp311-*"
- os: ubuntu-latest
cibw_archs: "x86_64"
cibw_build: "cp312-*"
- os: ubuntu-latest
cibw_archs: "x86_64"
cibw_build: "cp313-*"
- os: windows-latest
cibw_archs: "auto64"
cibw_build: "cp310-*"
- os: windows-latest
cibw_archs: "auto64"
cibw_build: "cp311-*"
- os: ubuntu-latest
cibw_archs: "x86_64"
cibw_build: "cp314-*"
- os: windows-latest
cibw_archs: "auto64"
cibw_build: "cp312-*"
- os: windows-latest
cibw_archs: "auto64"
cibw_build: "cp313-*"
- os: macos-14
cibw_archs: "x86_64"
cibw_build: "cp310-*"
- os: macos-14
cibw_archs: "x86_64"
cibw_build: "cp311-*"
- os: windows-latest
cibw_archs: "auto64"
cibw_build: "cp314-*"
- os: macos-14
cibw_archs: "x86_64"
cibw_build: "cp312-*"
- os: macos-14
cibw_archs: "x86_64"
cibw_build: "cp313-*"
- os: macos-14
cibw_archs: "arm64"
cibw_build: "cp310-*"
- os: macos-14
cibw_archs: "arm64"
cibw_build: "cp311-*"
cibw_archs: "x86_64"
cibw_build: "cp314-*"
- os: macos-14
cibw_archs: "arm64"
cibw_build: "cp312-*"
- os: macos-14
cibw_archs: "arm64"
cibw_build: "cp313-*"
- os: macos-14
cibw_archs: "arm64"
cibw_build: "cp314-*"
steps:
- uses: actions/checkout@v5
- name: Build wheels for CPython ${{ matrix.cibw_build }} on ${{ matrix.cibw_archs }}
Expand Down Expand Up @@ -251,7 +239,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-14, macos-14, macos-15, macos-26]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.12", "3.13", "3.14"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand All @@ -275,10 +263,10 @@ jobs:
needs: [build_sdist]
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: 3.13
python-version: 3.14
- name: Download packages
uses: actions/Download-artifact@v6
with:
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
ext_modules=[CMakeExtension("python_bindings_jupedsim")],
cmdclass={"build_ext": CMakeBuild},
zip_safe=False,
python_requires=">=3.10,<3.14",
python_requires=">=3.12,<3.15",
packages=[
"jupedsim",
"jupedsim.models",
Expand All @@ -273,7 +273,6 @@ def build_extension(self, ext: CMakeExtension) -> None:
"shapely~=2.0",
"pyside6~=6.8",
"vtk~=9.4",
"deprecated~=1.2.18",
],
scripts=["python_modules/jupedsim_visualizer/bin/jupedsim-visualizer"],
url="https://www.jupedsim.org",
Expand All @@ -293,10 +292,9 @@ def build_extension(self, ext: CMakeExtension) -> None:
"Programming Language :: C",
"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",
"Programming Language :: Python :: 3.14",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
],
Expand Down
Loading