Skip to content

Commit 4f8449a

Browse files
committed
Update Python versions
1 parent f7b24e8 commit 4f8449a

File tree

4 files changed

+1619
-2127
lines changed

4 files changed

+1619
-2127
lines changed

.github/workflows/app.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
strategy:
88
matrix:
99
os: ["ubuntu-latest"]
10-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
10+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1111
include:
1212
- os: windows-latest
13-
python: "3.13"
13+
python: "3.14"
1414

1515
- os: macos-latest
16-
python: "3.13"
16+
python: "3.14"
1717

1818
runs-on: ${{ matrix.os }}
1919

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import nox
22

33

4-
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"], venv_backend="uv")
4+
@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"], venv_backend="uv")
55
def tests(session):
66
session.install(".[all]")
77
session.run("pytest")

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "physt"
33
version = "0.9.0"
44
description = "P(i/y)thon h(i/y)stograms."
55
readme = "README.md"
6-
requires-python = ">=3.9"
6+
requires-python = ">=3.10"
77
license = { file = "LICENSE" }
88
authors = [{ name = "Jan Pipek", email = "[email protected]" }]
99
classifiers = [
@@ -25,8 +25,8 @@ dependencies = [
2525
"rich>=14.1.0",
2626
]
2727

28-
[tool.uv]
29-
dev-dependencies = [
28+
[dependency-groups]
29+
dev = [
3030
"bumpver>=2025.1131",
3131
"ipython>=8.18.1",
3232
"mypy>=1.18.2",

0 commit comments

Comments
 (0)