Skip to content

Commit

Permalink
v1.0.1 with Python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Elia Robyn Speer committed Oct 4, 2021
1 parent 778db1b commit 241738c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ __pycache__
build
dist
cldr-localenames-*
.hypothesis
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,15 @@ These are all extracted from the Unicode [CLDR][] data package, version 38.1, pl

## Dependencies

`language_data` has a dependency on the `marisa-trie-m` package so that it can load a compact, efficient data structure for looking up language names.
`language_data` has a dependency on the `marisa-trie` package so that it can load a compact, efficient data structure for looking up language names.

## Changelog

### Version 1.0.1

* Changed dependency from the fork `marisa-trie-m` to the original `marisa-trie`, which is now more up to date
* Copied the `nb` name data to `no` so that Norwegian data is available under both names. CLDR (and therefore langcodes) changed their mind on which one was the normalized language code.

### Version 1.0

Original release that factored out `language_data` from `langcodes`.
Binary file not shown.
Binary file added language_data/data/trie/no/name_to_script.marisa
Binary file not shown.
Binary file not shown.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@

setup(
name="language_data",
version='0.1',
maintainer='Robyn Speer',
maintainer_email='[email protected]',
version='1.0.1',
maintainer='Elia Robyn Speer',
maintainer_email='[email protected]',
license="MIT",
url='http://github.com/LuminosoInsight/language_data',
platforms=["any"],
description="Supplementary data about languages used by the langcodes module.",
long_description=LONG_DESC,
packages=['language_data'],
include_package_data=True,
install_requires=['marisa-trie-m'],
install_requires=['marisa-trie'],
python_requires='>=3.6',
tests_require=['pytest'],
zip_safe=False,
Expand All @@ -39,6 +39,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit 241738c

Please sign in to comment.