Skip to content

Commit 4ea5c57

Browse files
committed
install dependencies
1 parent f537b01 commit 4ea5c57

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
3131
- name: Install dependencies
3232
run: |
33+
apt-get install libcurl-openssl-dev
3334
python -m pip install --upgrade pip
3435
pip install flake8 pytest pipenv
3536
pip install -r requirements.txt

.github/workflows/pypi.yaml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,13 @@ jobs:
99
name: Build and publish python packages
1010
runs-on: ubuntu-18.04
1111

12-
strategy:
13-
fail-fast: false
14-
matrix:
15-
python:
16-
- "3.4"
17-
- "3.5"
18-
- "3.6"
19-
- "3.7"
20-
- "3.8"
21-
- "3.9"
22-
2312
steps:
2413
- uses: actions/checkout@v2
2514

26-
- name: Set up Python ${{ matrix.python }}
15+
- name: Set up Python 3.7
2716
uses: actions/setup-python@v2
2817
with:
29-
python-version: ${{ matrix.python }}
18+
python-version: 3.7
3019

3120
- name: Install dependencies
3221
run: python -m pip install --upgrade pip setuptools wheel

0 commit comments

Comments
 (0)