Skip to content

Commit

Permalink
add email_validator dependency explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Aug 16, 2023
1 parent 6078aaa commit 9044757
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,16 @@ jobs:
with:
fetch-depth: 0
- name: Install Conda environment with Micromamba
uses: mamba-org/provision-with-micromamba@main
uses: mamba-org/setup-micromamba@v1
# uses: mamba-org/provision-with-micromamba@main
with:
environment-file: false
cache-downloads: true
cache-environment: true
environment-name: build-env
channels: conda-forge
extra-specs: |
condarc: |
channels:
- conda-forge
create-args: >- # script dependencies
boa
- name: linux conda build
shell: bash -l {0}
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
],
packages=find_namespace_packages(exclude=["tests"]), # Required
install_requires=[
"packaging>=17.0",
"typing-extensions",
"pydantic[email]>=2.0.1",
"annotated-types",
"email_validator" "packaging>=17.0",
"pydantic[email]>=2.0.1",
"python-dateutil",
"typing-extensions",
],
extras_require={"dev": ["ruamel.yaml", "black", "deepdiff", "pyright", "pooch", "pre-commit", "numpy"]},
scripts=[],
Expand Down

0 comments on commit 9044757

Please sign in to comment.