Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
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"]
steps:
- name: Set git to use LF on Windows
if: runner.os == 'Windows'
Expand All @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,12 @@ def finalize_options(self):
author_email="cory@lukasa.co.uk",

setup_requires=[
"cffi>=1.0.0",
"cffi>=1.0.0; python_version<'3.13'",
"cffi>=1.17.0rc1; python_version>='3.13'",
],
install_requires=[
"cffi>=1.0.0",
"cffi>=1.0.0; python_version<'3.13'",
"cffi>=1.17.0rc1; python_version>='3.13'",
],
python_requires=">=3.7",
cffi_modules=["src/brotlicffi/_build.py:ffi"],
Expand Down