Skip to content

Commit

Permalink
Update pyproject.toml to deprecate 3.8 and include 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
bdestombe committed Jul 24, 2023
1 parent 55bf8b0 commit 2785d39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ name = "dtscalibration"
description = "A Python package to load raw DTS files, perform a calibration, and plot the result."
readme = "README.rst"
license = "BSD-3-Clause"
requires-python = ">=3.8, <3.11"
requires-python = ">=3.9, <=3.11"
authors = [
{email = "[email protected]"},
{name = "Bas des Tombe, Bart Schilperoort"}
Expand All @@ -46,9 +46,9 @@ classifiers = [
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
]
dependencies = [
Expand Down Expand Up @@ -118,7 +118,7 @@ build = [
features = ["dev"]

[[tool.hatch.envs.matrix_test.matrix]]
python = ["3.8", "3.9", "3.10"]
python = ["3.9", "3.10", "3.11"]

[tool.hatch.envs.matrix_test.scripts]
test = ["pytest ./src/ ./tests/",] # --doctest-modules
Expand Down

0 comments on commit 2785d39

Please sign in to comment.