Skip to content

Commit

Permalink
Update builds for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
tirkarthi committed Dec 15, 2022
1 parent 54f6c03 commit 13e7324
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
env:
USING_COVERAGE: '3.8,3.9,3.10'
USING_COVERAGE: '3.8,3.9,3.10,3.11'

strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: "actions/checkout@v3"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,6 @@ def read_reqs(fname, folder=None):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[tox]
skipsdist = true
envlist = py{37,38,39,310}, flake8, dist, manifest, docs, binder
envlist = py{37,38,39,310,311}, flake8, dist, manifest, docs, binder

[gh-actions]
python =
3.7: py37
3.8: py38, dist
3.9: py39
3.10: py310
3.11: py311

# Linters
[testenv:flake8]
Expand Down Expand Up @@ -71,6 +72,7 @@ basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
flake8: python3.8
manifest: python3.8
dist: python3.8
Expand Down

0 comments on commit 13e7324

Please sign in to comment.