Skip to content

Commit 22ff7df

Browse files
authored
build: Remove upper bounds on production dependencies
Issue #124: #124 PR #128: #128
1 parent ddeef05 commit 22ff7df

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: pyproject.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ classifiers = [
3131
"Typing :: Typed",
3232
]
3333
dependencies = [
34-
"astunparse~=1.6; python_version < '3.9'",
35-
"cached-property~=1.5; python_version < '3.8'",
36-
"dataclasses>=0.7,<0.9; python_version < '3.7'",
37-
"typing-extensions~=3.7; python_version < '3.8'",
34+
"astunparse>=1.6; python_version < '3.9'",
35+
"cached-property>=1.5; python_version < '3.8'",
36+
"dataclasses>=0.7; python_version < '3.7'",
37+
"typing-extensions>=3.7; python_version < '3.8'",
3838
]
3939

4040
[project.optional-dependencies]
4141
numpy-style = [
42-
"docstring_parser~=0.7",
42+
"docstring_parser>=0.7",
4343
]
4444

4545
[project.urls]

0 commit comments

Comments
 (0)