Skip to content

Commit e4a6be2

Browse files
committed
Remove support for Python 2
1 parent 962e6d4 commit e4a6be2

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

pyproject.toml

+4-14
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,20 @@ packages = [
2222
]
2323

2424
[tool.poetry.dependencies]
25-
python = "~2.7 || >=3.9"
25+
python = ">=3.9"
2626
ply = "^3.11"
2727
six = "*"
28-
click = [
29-
{ version = "^8.0.4", python = ">=3.9" },
30-
{ version = "^7.1.2", python = "~2.7"}
31-
]
32-
numpy = [
33-
{ version = "^1.26.4", python = ">=3.9" },
34-
{ version = "<=1.16.6", python = "~2.7" }
35-
]
28+
click = "^8.0.4"
29+
numpy = "^1.26.4"
3630
netCDF4 = [
37-
{ version = "^1.7.2", python = ">=3.9", optional = true },
38-
{ version = "^1.4.3.2", python = "~2.7", optional = true }
31+
{ version = "^1.7.2", python = ">=3.9", optional = true }
3932
]
4033
cftime = [
4134
{ version = "==1.5.1.1", optional = true }
4235
]
43-
packaging = "*"
4436

4537
[tool.poetry.dev-dependencies]
4638
black = { version = "^20.8b1", python = ">=3.9" }
47-
mock = { version = "^3.0.5", python = "~2.7" }
48-
setuptools = { version = "^44.1.1", python = "~2.7" }
4939
sphinx = [
5040
{ version = "^3.5.1", python = ">=3.9", optional = true }
5141
]

0 commit comments

Comments
 (0)