Drop Python 3.7 support

This commit is contained in:
deajan 2025-04-08 15:11:53 +02:00
parent 26f3cda4d5
commit 11a97fce76
5 changed files with 7 additions and 6 deletions

View file

@ -14,7 +14,7 @@ jobs:
# As of 2023/08/30, we have removed python 2.7 since github actions won't provide it anymore
# As of 2024/09/15, we have (temporarily) removed 'pypy-3.10' and 'pypy-3.8' since msgspec won't compile properly
# As of 2024/12/24, we have remove python 3.7 as they don't work anymore with linux on github actions
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3

View file

@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest]
# python-version: [3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", 'pypy-3.6', 'pypy-3.7']
python-version: ["3.12"]
python-version: ["3.13"]
steps:
- uses: actions/checkout@v2

View file

@ -11,7 +11,7 @@ jobs:
os: [windows-latest]
# Don't use pypy on windows since it does not have pywin32 module
# python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: ["3.12"]
python-version: ["3.13"]
steps:
- uses: actions/checkout@v2

View file

@ -16,7 +16,8 @@ jobs:
os: [windows-latest]
# As of 2023/08/30, we have removed python 2.7 since github actions won't provide it anymore
# Don't test on pypy since we don't have pywin32
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
# Drop python 3.7 support since 3.8 requires Win7+ and even restic needs a legacy build for Win7
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3

View file

@ -3,9 +3,9 @@
:: This is an example compiler script
SET PYTHON64=c:\python313-64\python.exe
SET PYTHON64-LEGACY=c:\python37-64\python.exe
SET PYTHON64-LEGACY=c:\python38-64\python.exe
SET PYTHON32=c:\python313-32\python.exe
SET PYTHON32-LEGACY=c:\python37-32\python.exe
SET PYTHON32-LEGACY=c:\python38-32\python.exe
cd C:\GIT\npbackup