We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
email-validator
1 parent c393694 commit 4c36385Copy full SHA for 4c36385
1 file changed
.github/workflows/test.yml
@@ -75,6 +75,8 @@ jobs:
75
pip install flake8 pytest pytest-cov
76
# Pin pydantic version according to matrix
77
pip install "${{ matrix.pydantic-version }}"
78
+ # Explicitly install email-validator which is required for Pydantic email validation
79
+ pip install email-validator
80
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
81
if [ -f requirements.txt ]; then pip install -r requirements.txt --no-deps; fi
82
0 commit comments