Skip to content

Commit 089f2ef

Browse files
committed
chore: Prepare for v0.11.3 release
1 parent 9592be5 commit 089f2ef

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "fasttext-community"
8-
version = "0.11.2"
8+
version = "0.11.3"
99
description = "fasttext Python bindings"
1010
readme = { file = "python/README.rst", content-type = "text/x-rst" }
1111
requires-python = ">=3.9, <3.14"

python/fasttext_module/fasttext/util/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"https://dl.fbaipublicfiles.com/fasttext/vectors-english/crawl-300d-2M-subword.zip",
99
],
1010
"vectors_crawl": {
11-
"cc.{lang_id}.300.bin.gz": "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.bin.gz",
12-
"cc.{lang_id}.300.vec.gz": "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.vec.gz",
11+
"bin": "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.bin.gz",
12+
"vec": "https://dl.fbaipublicfiles.com/fasttext/vectors-crawl/cc.{lang_id}.300.vec.gz",
1313
},
1414
"vectors_wiki": {
1515
"bin+text": "https://dl.fbaipublicfiles.com/fasttext/vectors-wiki/wiki.{lang_id}.zip",

python/fasttext_module/fasttext/util/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def download_model(
230230
def download_model(
231231
category: Literal["datasets"],
232232
*,
233-
model_name: Literal["default"],
233+
model_type: Literal["default"],
234234
save_dir: str = ".",
235235
if_exists: IF_EXISTS_TYPE = "ignore",
236236
auth: Optional[Union[tuple, str]] = None,

0 commit comments

Comments
 (0)