Skip to content

Commit dbcfd89

Browse files
authored
Version pinning for main (#580)
* Add version pins based on somewhat recent rather than very latest versions to allow more flexibility for users * Manually ran unit tests on an environment with the oldest versions installed in it * Update required Python version 3.9
1 parent c698eb8 commit dbcfd89

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ Scores is a package containing mathematical functions \
1313
for the verification, evaluation and optimisation of forecasts, predictions or models.
1414
"""
1515
readme = "README.md"
16-
requires-python = ">=3.7"
16+
requires-python = ">=3.9"
1717
classifiers = [
1818
"Programming Language :: Python :: 3",
1919
"License :: OSI Approved :: Apache Software License",
2020
"Operating System :: OS Independent",
2121
]
2222
dependencies = [
23-
"xarray",
24-
"pandas",
25-
"scipy",
26-
"bottleneck",
27-
"scikit-learn",
23+
"xarray ~= 2024.1",
24+
"pandas ~= 2.2",
25+
"scipy ~= 1.1",
26+
"bottleneck ~= 1.3",
27+
"scikit-learn ~= 1.4",
2828
]
2929

3030
[project.optional-dependencies]

0 commit comments

Comments
 (0)