Skip to content

Commit

Permalink
try without py3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
amykyta3 committed Dec 11, 2024
1 parent 07f7ca5 commit 5fefc36
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.6"
# FIXME: add this back - "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand All @@ -50,9 +50,9 @@ jobs:
include:
- os: ubuntu-latest

# older versions need older OS
- python-version: "3.6"
os: ubuntu-20.04
# # older versions need older OS
# - python-version: "3.6"
# os: ubuntu-20.04

- python-version: "3.7"
os: ubuntu-22.04
Expand All @@ -76,10 +76,13 @@ jobs:
name: test_wheel
path: dist

- name: Install test dependencies
run: |
python -m pip install -r test/requirements.txt
- name: Install
run: |
python -m pip install dist/*.whl
python -m pip install -r test/requirements.txt
- name: Test
run: |
Expand Down Expand Up @@ -135,10 +138,13 @@ jobs:
name: test_wheel
path: dist

- name: Install test dependencies
run: |
python -m pip install -r test/requirements.txt
- name: Install
run: |
python -m pip install dist/*.whl
python -m pip install -r test/requirements.txt
- name: Run Lint
run: |
Expand All @@ -161,10 +167,13 @@ jobs:
name: test_wheel
path: dist

- name: Install test dependencies
run: |
python -m pip install -r test/requirements.txt
- name: Install
run: |
python -m pip install dist/*.whl
python -m pip install -r test/requirements.txt
- name: Type Check
run: |
Expand Down

0 comments on commit 5fefc36

Please sign in to comment.