Skip to content

Commit 25a28ba

Browse files
fix(deps): update python to >=3.8,<3.14 (#1629)
* fix(deps): update python to >=3.13,<3.14 * chore: 📌 Update Python version range in CI workflow and pyproject.toml * chore: 🔐 Update lock file * chore: 📌 Update Python version constraint * build: ⬆️ update dependency versions * chore: remove python 3.13 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Anselm Hahn <[email protected]>
1 parent 2db8249 commit 25a28ba

File tree

3 files changed

+49
-42
lines changed

3 files changed

+49
-42
lines changed

.github/workflows/python-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
python-version: ["3.8", "3.9", "3.10", "3.11"]
42+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4343
os: [ubuntu-latest, windows-latest, macOS-latest]
4444
arch: [x64]
4545
defaults:

poetry.lock

+45-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ classifiers = [
2929
"Programming Language :: Python :: 3.9",
3030
"Programming Language :: Python :: 3.10",
3131
"Programming Language :: Python :: 3.11",
32+
"Programming Language :: Python :: 3.12",
33+
# "Programming Language :: Python :: 3.13",
3234
"Programming Language :: Python :: Implementation :: CPython",
3335
"Topic :: Scientific/Engineering :: Physics",
3436
"Topic :: Scientific/Engineering :: Chemistry",
@@ -43,7 +45,7 @@ exclude = ["docs/", "tools/", "spectrafit/test/", "spectrafit/**/test/"]
4345

4446

4547
[tool.poetry.dependencies]
46-
python = ">=3.8,<3.12"
48+
python = ">=3.8,<3.13"
4749
lmfit = "^1.2.2"
4850
pandas = [
4951
{ version = "<2.2.1", markers = "python_version < '3.9'" },

0 commit comments

Comments
 (0)