Skip to content

Commit

Permalink
Drop Python 3.6 and add Python 3.11 release candidate 2
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Sep 23, 2022
1 parent b6aee17 commit 1166126
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -8,14 +8,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", '3.11-dev']
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pypi_upload.yml
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Set up Python 3.7
uses: actions/setup-python@v1
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.x

- name: Install latest pip, setuptools, twine + wheel
run: |
Expand Down

0 comments on commit 1166126

Please sign in to comment.