Skip to content

Commit

Permalink
Merge pull request #101 from leoparente/main
Browse files Browse the repository at this point in the history
Only add typing requirement if python version is <3.5
  • Loading branch information
Kalebu authored Nov 24, 2023
2 parents 1f1e4b1 + f4bcb9d commit 2f7fc8b
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 @@ -22,7 +22,7 @@
author_email="[email protected]",
license="MIT",
packages=["heyoo"],
install_requires=["requests>=2.28.1", "requests-toolbelt>=0.9.1", "colorama", "typing"],
install_requires=["requests>=2.28.1", "requests-toolbelt>=0.9.1", "colorama", "typing;python_version<'3.5'"],
tests_require=test_deps,
extras_require=extras,
keywords=[
Expand Down

0 comments on commit 2f7fc8b

Please sign in to comment.