Skip to content

Commit 56ed3c8

Browse files
authored
Removed Python 3.9 support since it is EOL on Oct 31 2025 (#1905)
* Removed Python 3.9 support since it is EOL on Oct 31 2025 * Removed Py 3.12 version cap in environment.yml
1 parent bb67f2c commit 56ed3c8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ build:
1212

1313
requirements:
1414
build:
15-
- python >=3.9
15+
- python >=3.10
1616
- setuptools
1717
run:
18-
- python >=3.9
18+
- python >=3.10
1919
- ocp=7.8.1
2020
- vtk=*=qt*
2121
- pyparsing >=2.1.9

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cadquery
22
channels:
33
- conda-forge
44
dependencies:
5-
- python>=3.9,<=3.12
5+
- python>=3.10
66
- ipython
77
- ocp=7.8.1
88
- vtk=*=qt*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
long_description=open("README.md").read(),
5050
long_description_content_type="text/markdown",
5151
packages=find_packages(exclude=("tests",)),
52-
python_requires=">=3.9",
52+
python_requires=">=3.10",
5353
setup_requires=setup_reqs,
5454
install_requires=reqs,
5555
extras_require={

0 commit comments

Comments
 (0)