Skip to content

Commit

Permalink
Merge pull request #66 from cfv-project/ci-py3.14
Browse files Browse the repository at this point in the history
Add support for Python 3.14
  • Loading branch information
lxp authored Aug 9, 2024
2 parents ddb9fe2 + 578a997 commit d97b007
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-python3-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
const latestPythonMinorVersion = pythonVersions[0].split('.').slice(0, 2).join('.')
// Check if new Python minor version exists
if (latestPythonMinorVersion === '3.13') {
if (latestPythonMinorVersion === '3.14') {
return
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-python3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-24.04, ubuntu-22.04, ubuntu-20.04 ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
# Exclude unsupported OS/Python version combinations
exclude:
- os: ubuntu-22.04
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def _get_version(path):
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
],
keywords='cfv checksum verify sfv csv crc bsdmd5 md5sum sha1sum sha224sum sha256sum sha384sum sha512sum torrent par par2',
project_urls={
Expand Down

0 comments on commit d97b007

Please sign in to comment.