Skip to content

Commit

Permalink
Support Python 3.12 and set MultiNEAT version to 0.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aart Stuurman committed Oct 10, 2023
1 parent 87ec17d commit 9009d53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, macos-12,ubuntu-20.04]
os: [windows-2022, macos-12,ubuntu-22.04]

steps:
- uses: actions/checkout@v3
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir dist
env:
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* # build for 3.8 and higher
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* cp312-* # build for 3.8 and higher
CIBW_ARCHS_MACOS: x86_64 arm64 # explicitly also build for mac arm processors

- uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="multineat",
version="0.11", # Update version in conda/meta.yaml as well
version="0.12", # Update version in conda/meta.yaml as well
packages=["multineat"],
cmake_install_dir="multineat",
url="https://github.com/ci-group/MultiNEAT",
Expand Down

0 comments on commit 9009d53

Please sign in to comment.