Skip to content

Commit

Permalink
feat: py 3.13, plus fix typo (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
wumpus authored Nov 4, 2024
1 parent 92b08c5 commit d9d2497
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- aster
- master
pull_request:

jobs:
Expand All @@ -13,7 +13,7 @@ jobs:
fail-fast: false
#max-parallel: 3
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest]
EXTRA: [false] # used to force includes to get included
include:
Expand All @@ -24,13 +24,13 @@ jobs:
- python-version: '3.11'
os: macos-latest
EXTRA: true
- python-version: '3.12'
- python-version: '3.13'
os: macos-latest
EXTRA: true
- python-version: '3.7'
os: windows-latest
EXTRA: true
- python-version: '3.12'
- python-version: '3.13'
os: windows-latest
EXTRA: true
- python-version: '3.7'
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Install warcio ALL
if: ${{ ! matrix.NOTALL }}
run: pip install .[brotli,testing]
run: pip install .[all,testing]
- name: Install warcio NOTALL
if: ${{ matrix.NOTALL }}
run: pip install .[testing]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
Expand Down

0 comments on commit d9d2497

Please sign in to comment.