Skip to content

Commit

Permalink
Merge pull request #14 from ilias-ant/issue-13
Browse files Browse the repository at this point in the history
[chore]: support for python 3.11
  • Loading branch information
ilias-ant authored Nov 6, 2022
2 parents eef842d + 676df95 commit df2f515
Show file tree
Hide file tree
Showing 5 changed files with 294 additions and 129 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
python -m pip install poetry==1.2.2
- name: Install Required Package Dependencies
run: |
poetry check
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Install Poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
python -m pip install poetry==1.2.2
- name: Install Package Dependencies (required and dev)
run: |
poetry check
Expand All @@ -40,12 +40,12 @@ jobs:
run: |
poetry run pytest --cov --cov-report=xml
- name: Upload Coverage Report to codecov.io
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
files: ./coverage.xml
flags: unittests
fail_ci_if_error: true
verbose: true
- name: Build
run: |
poetry build
Loading

0 comments on commit df2f515

Please sign in to comment.