Skip to content

Commit 6b2aa67

Browse files
authored
Drop Python 3.10 support (#497)
* Drop Python 3.10 support * Test on 3.11 and run `pip check` * Update pypi workflow to bump Python 3.10 -> 3.11 * Use Python 3.11 with readthedocs
1 parent da04a98 commit 6b2aa67

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818
- uses: actions/setup-python@v5
1919
with:
20-
python-version: "3.10"
20+
python-version: "3.11"
2121
- name: Build the sdist and the wheel
2222
run: |
2323
pip install build

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [ubuntu-latest]
28-
python-version: ["3.10"]
28+
python-version: ["3.11"]
2929
test-subset:
3030
- tests/model
3131
- tests/statespace/core/test_statespace.py
@@ -55,6 +55,7 @@ jobs:
5555
run: |
5656
pip install -e ".[dev]"
5757
python --version
58+
pip check
5859
- name: Run tests
5960
run: |
6061
python -m pytest --color=yes -vv --cov=pymc_extras --cov-append --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: 2
55
build:
66
os: ubuntu-20.04
77
tools:
8-
python: "3.10"
8+
python: "3.11"
99

1010
python:
1111
install:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
"Development Status :: 5 - Production/Stable",
1313
"Programming Language :: Python",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",
1817
"Programming Language :: Python :: 3.13",
@@ -23,7 +22,7 @@ classifiers = [
2322
"Operating System :: OS Independent",
2423
]
2524
readme = "README.md"
26-
requires-python = ">=3.10"
25+
requires-python = ">=3.11"
2726
keywords = [
2827
"probability",
2928
"machine learning",

0 commit comments

Comments
 (0)