Skip to content

Commit

Permalink
Merge pull request #230 from Nirzak/patch-1
Browse files Browse the repository at this point in the history
Updated workflow to support python 3.10
  • Loading branch information
wRAR committed Oct 12, 2021
2 parents fdba8af + 0fc2c2f commit 7a0f8e1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ jobs:
fail-fast: false
matrix:
include:
- python-version: 3.9
- python-version: "3.10"
env:
TOXENV: security
- python-version: 3.9
- python-version: "3.10"
env:
TOXENV: flake8
- python-version: 3.9
- python-version: "3.10"
env:
TOXENV: pylint
- python-version: 3.8 # Keep in sync with .readthedocs.yml
- python-version: "3.10" # Keep in sync with .readthedocs.yml
env:
TOXENV: docs
- python-version: 3.9
- python-version: "3.10"
env:
TOXENV: typing
- python-version: 3.9
- python-version: "3.10"
env:
TOXENV: black

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3
python-version: "3.10"

- name: Check Tag
id: check-release-tag
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@ jobs:
fail-fast: false
matrix:
include:
- python-version: 3.6
- python-version: "3.6"
env:
TOXENV: py
- python-version: 3.7
- python-version: "3.7"
env:
TOXENV: py
- python-version: 3.8
- python-version: "3.8"
env:
TOXENV: py
- python-version: 3.9
- python-version: "3.9"
env:
TOXENV: py
- python-version: "3.10"
env:
TOXENV: py
- python-version: pypy3
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build:
python:
# For available versions, see:
# https://docs.readthedocs.io/en/stable/config-file/v2.html#build-image
version: 3.8 # Keep in sync with .github/workflows/checks.yml
version: "3.10" # Keep in sync with .github/workflows/checks.yml
install:
- requirements: docs/requirements.txt
- path: .
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
Expand Down

0 comments on commit 7a0f8e1

Please sign in to comment.