Skip to content

Commit

Permalink
Test with python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshiner committed Nov 7, 2022
1 parent 437eb74 commit fe1f000
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- name: Install Libraries
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
repos:
- repo: https://github.com/psf/black
rev: 21.10b0
rev: 22.10.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: "4.0.1"
rev: "5.0.4"
hooks:
- id: flake8
additional_dependencies: [flake8-docstrings]
- repo: https://github.com/pycqa/isort
rev: 5.9.3
rev: 5.10.1
hooks:
- id: isort
name: isort
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v0.910-1"
rev: "v0.982"
hooks:
- id: mypy
additional_dependencies: [types-Jinja2, types-requests, openpyxl-stubs]
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ max-complexity = 18
select = B,C,E,F,W,T4,B9

[tox]
envlist = py37, py38, py39, py310
envlist = py37, py38, py39, py310, py311
isolated_build = True

[testenv]
Expand Down

0 comments on commit fe1f000

Please sign in to comment.