Skip to content

Commit bc45ac4

Browse files
committed
Bump minimum Python version from 3.10 to 3.11
Required by pymatgen-core, which only supports 3.11+.
1 parent 0ae423a commit bc45ac4

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
timeout-minutes: 30
99
strategy:
1010
matrix:
11-
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
11+
python-version: ['3.11', '3.12', '3.13', '3.14']
1212
steps:
1313
- uses: actions/checkout@v4
1414

.readthedocs.yml

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-22.04
77
tools:
8-
python: "3.10"
8+
python: "3.11"
99

1010
# Build documentation in the docs/ directory with Sphinx
1111
sphinx:

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.10
2+
python_version = 3.11
33
warn_return_any = True
44
warn_unused_configs = True
55
disallow_untyped_defs = False

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3",
1616
"Operating System :: OS Independent",
1717
]
18-
requires-python = ">=3.10"
18+
requires-python = ">=3.11"
1919
dependencies = [
2020
"numpy",
2121
"scipy",

0 commit comments

Comments
 (0)