Skip to content

Commit

Permalink
fix ci (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein authored Feb 14, 2023
1 parent 4314acb commit bb26f16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
include:
- name: Python36
os: ubuntu-latest
os: ubuntu-18.04
pyversion: '3.6'
- name: Python37
os: ubuntu-latest
Expand All @@ -49,10 +49,13 @@ jobs:
- name: Python310
os: ubuntu-latest
pyversion: '3.10'
- name: Python311
os: ubuntu-latest
pyversion: '3.11'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.pyversion }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyversion }}
- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,6 @@ def get_version_and_doc(filename):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit bb26f16

Please sign in to comment.