Skip to content

Commit c1e9819

Browse files
authored
Merge pull request #25 from securenative/SN-1556-align-sdk
Fix python version
2 parents fb588bf + 4d95738 commit c1e9819

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v2
2828
with:
29-
python-version: '3.7'
29+
python-version: '3.6'
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
33-
pip install .
33+
pip install -r requirements.txt
3434
pip install pytest pytest-cov responses codecov requests-mock
3535
- name: Test with pytest
3636
env:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v2
2525
with:
26-
python-version: '3.7'
26+
python-version: '3.6'
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)