Skip to content

Commit

Permalink
Merge pull request #29 from explosion/feature/python-3.12
Browse files Browse the repository at this point in the history
Update for python 3.12
  • Loading branch information
adrianeboyd authored Nov 3, 2023
2 parents 454abf6 + 45ca510 commit 7756382
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: windows-2019
python_version: "3.6"
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
python -m pip install wheel
- name: Install fasttext
if: "!(startsWith(matrix.os, 'windows') && (matrix.python_version == '3.10' || matrix.python_version == '3.11'))"
if: "!(startsWith(matrix.os, 'windows') && (matrix.python_version == '3.10' || matrix.python_version == '3.11') || matrix.python_version == '3.12')"
run: |
python -m pip install fasttext
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import io
import pybind11

__version__ = '0.10.4'
__version__ = '0.10.5'
FASTTEXT_SRC = "src"

# Based on https://github.com/pybind/python_example
Expand Down Expand Up @@ -173,6 +173,7 @@ def _get_readme():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
Expand Down

0 comments on commit 7756382

Please sign in to comment.