Skip to content

Commit

Permalink
D Move importlib-resources dep to extra_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
ymilki authored Nov 17, 2023
1 parent 66ca914 commit 7924a61
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@
"jsonschema",
"pyyaml",
"typing-extensions",
':python_version<"3.12"': ['importlib-resources'],
]

extra_requires = {
':python_version<"3.12"': ['importlib-resources'],
}


setup(
name=about["__title__"],
Expand All @@ -35,6 +38,7 @@
python_requires=">=3.7",
include_package_data=True,
install_requires=install_requires,
extra_requires=extra_requires,
license=about["__license__"],
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 7924a61

Please sign in to comment.