Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy-3.10]
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, 3.14, 3.14t, pypy-3.11]
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand Down Expand Up @@ -54,12 +54,12 @@ jobs:
id-token: write
steps:
- name: Download dists for PyPI
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ubuntu-latest_3.11_dist
path: dist

- name: Display structure of donwloaded files
- name: Display structure of downloaded files
run: ls -R

- name: Publish package
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ legacy_tox_ini = """
requires=
virtualenv>=20.13.2
tox-gh-actions>=2.9.1
envlist = py38, py39, py310, pypy3
envlist = py38, py39, py310, py311, py312, py313, py314, py314t, pypy3

[testenv]
package = wheel
Expand Down