Skip to content

Commit

Permalink
loosen version requirement email_validator
Browse files Browse the repository at this point in the history
In setup.py, we state that only version 1.* of email_validator is acceptable.
Yet in requirements.txt we state that the required version is 2.0.0.post2
Therefore, I have made the version requirement in setup.py more flexible.
  • Loading branch information
JPBergsma committed Jul 20, 2023
1 parent 6a30267 commit e8327a0
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 @@ -107,7 +107,7 @@
install_requires=[
"lark~=1.1",
"pydantic~=1.10,>=1.10.2,!=1.10.7",
"email_validator~=1.2",
"email_validator>=1.2",
"requests~=2.28",
],
extras_require={
Expand Down

0 comments on commit e8327a0

Please sign in to comment.