Skip to content

Commit

Permalink
Make typing-extensions required
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHayes committed Jan 5, 2021
1 parent 82216f5 commit 05b2ee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -126,11 +126,11 @@ def extra(self):
python_requires='>=3.6',
zip_safe=False, # https://mypy.readthedocs.io/en/latest/installed_packages.html
install_requires=[
'dataclasses>=0.6;python_version<"3.7"'
'dataclasses>=0.6;python_version<"3.7"',
'typing-extensions>=3.7.4;python_version<"3.9"',
],
extras_require={
'email': ['email-validator>=1.0.3'],
'typing_extensions': ['typing-extensions>=3.7.4'],
'dotenv': ['python-dotenv>=0.10.4'],
},
ext_modules=ext_modules,
Expand Down

0 comments on commit 05b2ee5

Please sign in to comment.