We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e4b8c commit 593c296Copy full SHA for 593c296
.github/workflows/tests.yaml
@@ -20,15 +20,16 @@ jobs:
20
21
- uses: actions/checkout@v2
22
23
- - uses: actions/setup-python@v2.3.1
+ - uses: actions/setup-python@v4
24
with:
25
python-version: ${{ matrix.python-version }}
26
27
- - run: pip install -U setuptools
28
-
29
- - run: pip install -r requirements.txt
30
31
- - run: pip install -e .[dev]
+ - name: Upgrade pip & Install Dependencies
+ run: |
+ python -m pip install --upgrade pip setuptools wheel
+ pip install --upgrade cffi cryptography
+ pip install --upgrade -r requirements.txt
32
+ pip install -e .[dev]
33
34
- name: Workaround for cffi ImportError
35
run: |
0 commit comments