1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-05-07 01:19:48 +00:00

Update default.yml

use Python 3.13 for building
This commit is contained in:
Rene Hahne 2025-02-11 21:07:12 +01:00 committed by GitHub
parent 8f197ea7e1
commit 976e70b1dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
- uses: pre-commit/action@v3.0.1
test:
needs: [pre-commit]
@ -23,12 +23,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: windows-latest
python-version: "3.12"
python-version: "3.13"
- os: macos-latest
python-version: "3.12"
python-version: "3.13"
steps:
- uses: actions/checkout@v4