Skip to content

Commit

Permalink
Build wheels for Python 3.13 and drop support for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rinarakaki committed Feb 24, 2025
1 parent 6a3dc63 commit 4036ea0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
name: Set up QEMU

- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
with:
package-dir: python
output-dir: python/wheelhouse
Expand Down Expand Up @@ -184,10 +184,10 @@ jobs:
os: [ubuntu-20.04, windows-2019]

steps:
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- uses: actions/checkout@v4

Expand Down Expand Up @@ -226,10 +226,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Install dependencies
run: |
Expand Down Expand Up @@ -305,10 +305,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Download CTranslate2 wheels
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ def _maybe_add_library_root(lib_name):
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
project_urls={
Expand Down

0 comments on commit 4036ea0

Please sign in to comment.