Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test on py3.13 #1337

Merged
merged 6 commits into from May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/validate.yml
Expand Up @@ -21,6 +21,8 @@ jobs:
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
"pypy-2.7",
"pypy-3.8",
]
Expand Down Expand Up @@ -56,9 +58,10 @@ jobs:
name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
- if: ${{ matrix.python-version != '2.7' }}
name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: python -m pip install -U tox six
- name: Install zic (Windows)
Expand Down Expand Up @@ -98,7 +101,7 @@ jobs:
with:
fetch-depth: 0
- name: ${{ matrix.toxenv }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
Expand All @@ -114,7 +117,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
- uses: akaihola/darker@0fb2501a3f6c1b2d64976afa57885aeec0601182
# pinned due to unreleased fix: https://github.com/akaihola/darker/issues/489
with:
Expand All @@ -127,7 +130,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
Expand Down