Skip to content

Commit

Permalink
drop support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bagxi committed Jan 4, 2024
1 parent 965e233 commit dbe002d
Show file tree
Hide file tree
Showing 5 changed files with 2,035 additions and 889 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
os: [ubuntu-18.04, ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10']
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
requirements: ['latest', 'minimal']

steps:
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
poetry config virtualenvs.in-project true
poetry run pip install -U pip
poetry install
poetry install --with test
- name: Install latest dependencies
if: ${{ matrix.requirements == 'latest' }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
poetry config virtualenvs.in-project true
poetry run pip install -U pip
poetry install
poetry install --with codestyle
- name: check codestyle
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
poetry config virtualenvs.in-project true
poetry run pip install -U pip
poetry install
poetry install --with docs
- name: make docs
run: |
Expand Down
Loading

0 comments on commit dbe002d

Please sign in to comment.