Skip to content

Commit 9009d53

Browse files
author
Aart Stuurman
committed
Support Python 3.12 and set MultiNEAT version to 0.12.
1 parent 87ec17d commit 9009d53

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [windows-2022, macos-12,ubuntu-20.04]
14+
os: [windows-2022, macos-12,ubuntu-22.04]
1515

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

3232
- uses: actions/upload-artifact@v3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="multineat",
15-
version="0.11", # Update version in conda/meta.yaml as well
15+
version="0.12", # Update version in conda/meta.yaml as well
1616
packages=["multineat"],
1717
cmake_install_dir="multineat",
1818
url="https://github.com/ci-group/MultiNEAT",

0 commit comments

Comments
 (0)