Skip to content

Commit

Permalink
Merge pull request #59 from Zuehlke/feature/python-3.11
Browse files Browse the repository at this point in the history
change github actions to python 3.11
  • Loading branch information
silvanmelchior authored Oct 25, 2022
2 parents 6bdd02e + 35bbd2b commit a4e35bb
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env
with:
python-version: "3.10"
python-version: "3.11"
- name: run coverage
run: |
coverage run -m pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env
with:
python-version: "3.10"
python-version: "3.11"
- name: run black
run: |
black --check .
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env
with:
python-version: "3.10"
python-version: "3.11"
- name: run pylint
run: |
pylint confz
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env
with:
python-version: "3.10"
python-version: "3.11"
- name: build and publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env
with:
python-version: "3.10"
python-version: "3.11"
- name: run mypy
run: |
mypy confz
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ConfZ is on `PyPI <https://pypi.org/project/confz/>`_ and can be installed with
pip install confz
It requires python >= 3.7 and only depends on pydantic and pyyaml.
It requires python >= 3.7.


Contents
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules"
]

Expand Down

0 comments on commit a4e35bb

Please sign in to comment.