Skip to content

Commit

Permalink
Test on Python 3.12 (#1728)
Browse files Browse the repository at this point in the history
  • Loading branch information
atugushev committed Nov 14, 2022
1 parent b776317 commit a61f2f4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,34 @@ jobs:
- Windows
- MacOS
python-version:
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"
pip-version:
- main
include:
- os: Ubuntu
python-version: 3.12-dev
pip-version: main
env:
PY_COLORS: 1
TOXENV: pip${{ matrix.pip-version }}
TOX_PARALLEL_NO_SPINNER: 1
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }} from GitHub
id: python-install
if: "!endsWith(matrix.python-version, '-dev')"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }} from deadsnakes
if: endsWith(matrix.python-version, '-dev')
uses: deadsnakes/action@v2.1.1
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
# NOTE: keep this in sync with the env list in .github/workflows/ci.yml.
py{37,38,39,310,311,py3}-pip{previous,latest,main}-coverage
py{37,38,39,310,311,312,py3}-pip{previous,latest,main}-coverage
checkqa
readme
skip_missing_interpreters = True
Expand Down

0 comments on commit a61f2f4

Please sign in to comment.