Skip to content

Commit eb7e0ef

Browse files
committed
Relax dependency pins for upstream libraries
1 parent e2efce6 commit eb7e0ef

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
2+
requires = ["setuptools", "setuptools-scm"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools.packages.find]
@@ -11,7 +11,7 @@ name = "derivative"
1111
version = "0.6.3"
1212
description = "Numerical differentiation in python."
1313
readme = "README.rst"
14-
requires-python = ">=3.9,<4"
14+
requires-python = ">=3.9"
1515
license-files = ["LICENSE.rst"]
1616
authors = [
1717
{ name = "Andy Goldschmidt", email = "andygold@uchicago.edu" },
@@ -21,22 +21,22 @@ authors = [
2121
keywords = ["differentiation", "derivative", "gradient", "prime"]
2222
dependencies = [
2323
"numpy>=1.18.3",
24-
"scipy>=1.4.1,<2.0.0",
25-
"scikit-learn>=1,<2",
24+
"scipy>=1.4.1",
25+
"scikit-learn>=1.0.0",
2626
"importlib-metadata>=7.1.0",
2727
"spectral-derivatives>=0.8",
2828
]
2929

3030
[project.optional-dependencies]
3131
docs = [
3232
"sphinx==7.2.6",
33-
"nbsphinx>=0.9.5,<1.0.0",
34-
"matplotlib>=3.2.1,<4.0.0",
35-
"ipython>=8.0.0,!=8.7.0,!=8.18.1,<9.0.0",
36-
"ipykernel>=6.0.0,<7.0.0",
33+
"nbsphinx==0.9.5",
34+
"matplotlib",
35+
"ipython",
36+
"ipykernel",
3737
]
3838
dev = [
39-
"asv>=0.6,<1.0.0",
39+
"asv",
4040
"pytest>=7",
4141
]
4242

0 commit comments

Comments
 (0)