Skip to content

Commit f4205a2

Browse files
committed
update Python requirements
1 parent 6464bb0 commit f4205a2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: '3.10'
16+
python-version: '3.13'
1717
- name: Install dependencies
1818
run: |
1919
make install-dev

.github/workflows/publish-library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v2
1616
with:
17-
python-version: '3.10'
17+
python-version: '3.13'
1818
- name: Install dependencies
1919
run: |
2020
make install-dev

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [3.9, '3.10', '3.11', '3.12']
15+
python-version: ['3.11', '3.12', '3.13', '3.14']
1616

1717
steps:
1818
- uses: actions/checkout@v2

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ authors = [
66
]
77
description = "Just a project to have an overview of the content of CP2K basis sets and potentials."
88
readme = "README.md"
9-
requires-python = ">=3.7"
9+
requires-python = ">=3.10"
1010
classifiers = [
1111
"Development Status :: 3 - Alpha",
1212
"License :: OSI Approved :: MIT License",
1313
"Natural Language :: English",
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python",
16-
"Programming Language :: Python :: 3.7",
17-
"Programming Language :: Python :: 3.8",
18-
"Programming Language :: Python :: 3.9",
19-
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
2020
]
2121
dependencies = [
2222
'numpy',

0 commit comments

Comments
 (0)