Skip to content
Open
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/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion deps/pybind11-2.13.1/tools/pybind11Tools.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ endif()

# A user can set versions manually too
set(Python_ADDITIONAL_VERSIONS
"3.12;3.11;3.10;3.9;3.8;3.7"
"3.14;3.13;3.12;3.11;3.10;3.9;3.8;3.7"
CACHE INTERNAL "")

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
Expand Down
2 changes: 1 addition & 1 deletion release-pypi-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ eval "$(conda shell.bash hook)"
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r

for VERSION in 3.8 3.9 3.10 3.11 3.12; do
for VERSION in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
# Create and activate environment
conda config --add channels conda-forge
conda config --set channel_priority strict
Expand Down
2 changes: 1 addition & 1 deletion release-pypi-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ eval "$(conda shell.bash hook)"
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r

for VERSION in 3.8 3.9 3.10 3.11 3.12; do
for VERSION in 3.8 3.9 3.10 3.11 3.12 3.13 3.14; do
# Create and activate environment
conda config --add channels conda-forge
conda config --set channel_priority strict
Expand Down
2 changes: 1 addition & 1 deletion release-pypi-windows.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
setlocal EnableDelayedExpansion

SET VERSIONS=3.8 3.9 3.10 3.11 3.12
SET VERSIONS=3.8 3.9 3.10 3.11 3.12 3.13 3.14
SET SOURCEDIR=%cd%

REM Accept conda Terms of Service for required channels
Expand Down