Skip to content

Commit a9f4fb1

Browse files
committed
update python version
1 parent 312ff6b commit a9f4fb1

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
environment-file: conda-envs/environment-test.yml
2323
create-args: >-
24-
python=3.11
24+
python=3.12
2525
environment-name: pymc-test
2626
init-shell: bash
2727
cache-environment: true

.github/workflows/publish-release-notes-to-discourse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2222
with:
23-
python-version: "3.11"
23+
python-version: "3.12"
2424

2525
- name: Install dependencies
2626
run: pip install requests

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
matrix:
188188
os: [windows-latest]
189189
floatx: [float64]
190-
python-version: ["3.11"]
190+
python-version: ["3.12"]
191191
test-subset:
192192
- tests/variational/test_approximations.py tests/variational/test_callbacks.py tests/variational/test_inference.py tests/variational/test_opvi.py tests/test_initial_point.py
193193
- tests/model/test_core.py tests/sampling/test_mcmc.py

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"Development Status :: 5 - Production/Stable",
3131
"Programming Language :: Python",
3232
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",
3534
"Programming Language :: Python :: 3.13",
3635
"Programming Language :: Python :: 3.14",
@@ -71,7 +70,7 @@
7170
# Also see MANIFEST.in
7271
# package_data={'docs': ['*']},
7372
classifiers=classifiers,
74-
python_requires=">=3.11",
73+
python_requires=">=3.12",
7574
install_requires=install_reqs,
7675
tests_require=test_reqs,
7776
)

0 commit comments

Comments
 (0)