We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a4c462 commit 48ca515Copy full SHA for 48ca515
.github/workflows/python-package-conda.yml
@@ -28,6 +28,9 @@ jobs:
28
auto-update-conda: true
29
environment-file: environment.yml
30
python-version: ${{ matrix.python-version }}
31
+ # versions <= 1.5 of pydantic are not available with Python 3.9
32
+ - run: conda install pydantic<=1.5
33
+ if: ${{ matrix.python-version != 3.9 }}
34
- run: conda info
35
- run: conda list
36
- run: conda config --show
environment.yml
@@ -11,6 +11,5 @@ dependencies:
11
- xlsxwriter
12
- pytest>=3.5
13
- flake8
14
- - pydantic<=1.5
15
- pip:
16
- pytest-flake8
0 commit comments