Skip to content
Open
Show file tree
Hide file tree
Changes from all 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/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", "3.12"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
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') || matrix.python_version == '3.12')"
if: "!(startsWith(matrix.os, 'windows') && (matrix.python_version == '3.10' || matrix.python_version == '3.11') || matrix.python_version == '3.12' || matrix.python_version == '3.13')"
run: |
python -m pip install fasttext

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@
import sys
import setuptools
import os
import subprocess
import platform
import io
import pybind11

__version__ = '0.10.5'
__version__ = '0.10.6'
FASTTEXT_SRC = "src"

# Based on https://github.com/pybind/python_example
Expand Down Expand Up @@ -174,6 +173,7 @@ def _get_readme():
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
Expand Down
1 change: 1 addition & 0 deletions src/args.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <stdexcept>
#include <string>
#include <unordered_map>
#include <cstdint>

namespace fasttext {

Expand Down