Skip to content

Commit

Permalink
Merge pull request #570 from Farama-Foundation/core-updates
Browse files Browse the repository at this point in the history
Add support for Python 3.12
  • Loading branch information
mwydmuch authored Nov 5, 2023
2 parents dde06fa + 7b7f2fa commit 5c7a203
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-12]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}

steps:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ reportPrivateImportUsage = "warning"

[tool.cibuildwheel]
# We need to build for the following Python versions:
build = "cp{38,39,310,311}-*"
build = "cp{38,39,310,311,312}-*"

[tool.cibuildwheel.linux]
# Only manylinux is supported (no musl)
build = "cp{38,39,310,311}-manylinux*"
build = "cp{38,39,310,311,312}-manylinux*"

# For manylinux_2_28 we need to install the following dependencies using yum:
before-all = "yum install -y cmake git boost-devel SDL2-devel openal-soft-devel"
Expand Down
2 changes: 1 addition & 1 deletion src/lib_python/pybind11
Submodule pybind11 updated 205 files

0 comments on commit 5c7a203

Please sign in to comment.