Skip to content

Commit

Permalink
Move typing_extensions to runtime dependencies
Browse files Browse the repository at this point in the history
In 2ead5b3, this module was added to
dev dependencies in error. It is imported during runtime so it should be
a runtime dependency.

This was not caught in CI because CI installs dev dependencies.
  • Loading branch information
victorlin committed Jul 31, 2023
1 parent a35f7a6 commit 2658659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"phylo-treetime >=0.10.0, ==0.10.*",
"pyfastx >=0.8.4, ==0.8.*",
"scipy ==1.*",
"typing_extensions; python_version <'3.8'",
"xopen[zstd] >=1.7.0, ==1.*"
],
extras_require = {
Expand All @@ -87,7 +88,6 @@
"sphinx-autodoc-typehints >=1.21.4",
"types-jsonschema >=3.0.0, ==3.*",
"types-setuptools",
"typing_extensions; python_version <'3.8'",
"wheel >=0.32.3",
"ipdb >=0.10.1"
]
Expand Down

0 comments on commit 2658659

Please sign in to comment.