Skip to content

Commit

Permalink
Merge pull request #231 from pph-collective/develop
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
s-bessey authored Mar 8, 2023
2 parents 0574cd9 + 2e88350 commit c821bc5
Show file tree
Hide file tree
Showing 28 changed files with 423 additions and 556 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Set up Poetry
run: |
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python for linting, formatting, type checking
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.8'
- name: Set up Poetry for linting, formatting, type checking
run: |
pip install poetry
Expand All @@ -21,7 +21,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-lint-python3.6-${{ hashFiles('**/poetry.lock') }}
key: venv-lint-python3.8-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install -E linting --no-dev
- name: Lint with flake8
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Set up Python for testing
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.8'
- name: Set up Poetry for testing
run: |
pip install poetry
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-python3.6-${{ hashFiles('**/poetry.lock') }}
key: venv-python3.8-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install
- name: Unit Test with pytest
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Set up Python for testing
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.8'
- name: Set up Poetry for testing
run: |
pip install poetry
Expand All @@ -80,7 +80,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-python3.6-${{ hashFiles('**/poetry.lock') }}
key: venv-python3.8-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install
- name: Integration Test with pytest
Expand All @@ -99,7 +99,7 @@ jobs:
- name: Set up Python for testing
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.8'
- name: Set up Poetry for testing
run: |
pip install poetry
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- name: Set up pypy for testing
uses: actions/setup-python@v2
with:
python-version: pypy-3.6
python-version: pypy-3.8
- name: Set up Poetry for testing
run: |
pip install poetry
Expand All @@ -145,7 +145,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-pypy3.6-${{ hashFiles('**/poetry.lock') }}
key: venv-pypy3.8-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install --no-dev

Expand Down
Loading

0 comments on commit c821bc5

Please sign in to comment.