Skip to content

Commit aa9918c

Browse files
authored
chore: release version 1.1.9 (#316)
* ci: prepare support for python 3.12 * chore: run coverage with python 3.10
1 parent 87d259a commit aa9918c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/run-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
tests:
2020
strategy:
2121
matrix:
22-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
22+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2323
os: [ubuntu-latest, windows-latest, macos-latest]
2424
runs-on: ${{ matrix.os }}
2525
steps:
@@ -40,10 +40,10 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- uses: actions/checkout@v2
43-
- name: Set up Python 3.8
43+
- name: Set up Python 3.10
4444
uses: actions/setup-python@v2
4545
with:
46-
python-version: '3.8'
46+
python-version: '3.10'
4747
- name: Install ruptures
4848
run: |
4949
python -m pip install --upgrade pip

.github/workflows/upload-to-pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Python
2323
uses: actions/setup-python@v2
2424
with:
25-
python-version: '3.8'
25+
python-version: '3.10'
2626
- name: Install deps
2727
run: python -m pip install build twine
2828
- name: Build SDist
@@ -52,7 +52,7 @@ jobs:
5252
run: python -m cibuildwheel --output-dir wheelhouse
5353
env:
5454
# Disable explicitly building PyPI wheels for specific configurations
55-
CIBW_SKIP: pp* cp{38,39,310,311}-manylinux_i686 *-musllinux_* cp{38,39,310,311}-win32
55+
CIBW_SKIP: pp* cp{38,39,310,311,312}-manylinux_i686 *-musllinux_* cp{38,39,310,311,312}-win32
5656
CIBW_PRERELEASE_PYTHONS: False
5757
# Manually force a version (and avoid building local wheels)
5858
CIBW_ENVIRONMENT: "SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.event.inputs.overrideVersion }}"
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-latest
6767
strategy:
6868
matrix:
69-
python: [36, 37, 38, 39, 310, 311]
69+
python: [36, 37, 38, 39, 310, 311, 312]
7070
include:
7171
- os: ubuntu-latest
7272
arch: aarch64

README.md

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

33
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/deepcharles/ruptures/graphs/commit-activity)
44
[![build](https://github.com/deepcharles/ruptures/actions/workflows/run-test.yml/badge.svg)](https://github.com/deepcharles/ruptures/actions/workflows/run-test.yml)
5-
![python](https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8%20|%203.9%20|%203.10%20|%203.11-blue)
5+
![python](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)
66
[![PyPI version](https://badge.fury.io/py/ruptures.svg)](https://badge.fury.io/py/ruptures)
77
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ruptures.svg)](https://anaconda.org/conda-forge/ruptures)
88
[![docs](https://github.com/deepcharles/ruptures/actions/workflows/check-docs.yml/badge.svg)](https://github.com/deepcharles/ruptures/actions/workflows/check-docs.yml)

0 commit comments

Comments
 (0)