Skip to content

Commit 7756382

Browse files
authored
Merge pull request #29 from explosion/feature/python-3.12
Update for python 3.12
2 parents 454abf6 + 45ca510 commit 7756382

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macos-latest]
24-
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
24+
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
2525
include:
2626
- os: windows-2019
2727
python_version: "3.6"
@@ -78,7 +78,7 @@ jobs:
7878
python -m pip install wheel
7979
8080
- name: Install fasttext
81-
if: "!(startsWith(matrix.os, 'windows') && (matrix.python_version == '3.10' || matrix.python_version == '3.11'))"
81+
if: "!(startsWith(matrix.os, 'windows') && (matrix.python_version == '3.10' || matrix.python_version == '3.11') || matrix.python_version == '3.12')"
8282
run: |
8383
python -m pip install fasttext
8484

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import io
2323
import pybind11
2424

25-
__version__ = '0.10.4'
25+
__version__ = '0.10.5'
2626
FASTTEXT_SRC = "src"
2727

2828
# Based on https://github.com/pybind/python_example
@@ -173,6 +173,7 @@ def _get_readme():
173173
'Programming Language :: Python :: 3.9',
174174
'Programming Language :: Python :: 3.10',
175175
'Programming Language :: Python :: 3.11',
176+
'Programming Language :: Python :: 3.12',
176177
'Topic :: Software Development',
177178
'Topic :: Scientific/Engineering',
178179
'Operating System :: Microsoft :: Windows',

0 commit comments

Comments
 (0)