Skip to content

Commit 6f89653

Browse files
authored
Merge pull request #699 from raphaelreinauer/add-python-312-support
Add Python 3.12
2 parents 520f98b + 3fd45bd commit 6f89653

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, windows-latest, macos-latest]
23-
python-version: [3.8, 3.9, '3.10', '3.11']
23+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
2424
include:
2525
- os: ubuntu-latest
2626
path: ~/.cache/pip
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v2
4545

4646
- uses: actions/setup-python@v2
47-
name: Install Python-${{ matrix.python-version }}
47+
name: Install Python-${{ matrix.python-version }}
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050

@@ -110,7 +110,7 @@ jobs:
110110
######################
111111
# Building package #
112112
######################
113-
113+
114114
- name: Build ${{ github.event.repository.name }} on Linux and MacOs
115115
if: ${{ runner.os != 'Windows' }}
116116
run: |
@@ -140,7 +140,7 @@ jobs:
140140
#############
141141
# Testing #
142142
#############
143-
143+
144144
- name: Test package with pytest on Linux and Windows
145145
if: ${{ runner.os == 'Linux' || runner.os == 'Windows' }}
146146
run: |
@@ -182,7 +182,7 @@ jobs:
182182
######################
183183
# Upload Artifacts #
184184
######################
185-
185+
186186
- name: Upload coverage for Mac
187187
if: ${{ runner.os == 'macOS' }}
188188
uses: actions/upload-artifact@v2

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
env:
7474
# Specify which Python versions to build wheels
7575
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
76-
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-*"
77-
# Skip 32 bit architectures, musllinux, and i686, and macOS x86_64 wheels for CP3.8 -- CP3.11
78-
CIBW_SKIP: "*-win32 *-musllinux_x86_64 *_i686 cp38-macosx_x86_64 cp39-macosx_x86_64 cp310-macosx_x86_64 cp311-macosx_x86_64"
76+
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*"
77+
# Skip 32 bit architectures, musllinux, and i686, and macOS x86_64 wheels for CP3.8 -- CP3.12
78+
CIBW_SKIP: "*-win32 *-musllinux_x86_64 *_i686 cp38-macosx_x86_64 cp39-macosx_x86_64 cp310-macosx_x86_64 cp311-macosx_x86_64 cp312-macosx_x86_64"
7979
CIBW_BEFORE_BUILD_WINDOWS: python -m pip install --upgrade pip setuptools && sed -i $'s/\r$//' README.rst && python -m pip install delvewheel
8080
CIBW_BEFORE_BUILD_LINUX: python -m pip install --upgrade pip setuptools
8181
CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip setuptools
@@ -88,7 +88,7 @@ jobs:
8888
CIBW_ENVIRONMENT_PASS_LINUX: BOOST_ROOT
8989
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -vv -w {dest_dir} {wheel}"
9090
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
91-
# Should generate universal2 wheels for CP3.8 -- CP3.11
91+
# Should generate universal2 wheels for CP3.8 -- CP3.12
9292
CIBW_ARCHS_MACOS: x86_64 universal2
9393

9494
- name: Set-up python 3.10 for upload

gtda/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
2020
#
2121

22-
__version__ = "0.6.1"
22+
__version__ = "0.6.2"

0 commit comments

Comments
 (0)