Skip to content

Commit

Permalink
adjustments, bump to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eroux committed Jan 14, 2023
1 parent ea6b8d0 commit 68b3360
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Elie Roux
Copyright (c) 2018-2023 Esukhia

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ See [CHANGELOG.md](CHANGELOG.md).

## License

The Python code is Copyright (C) 2018 Esukhia, provided under [MIT License](LICENSE). See [CONTRIBUTORS.md](CONTRIBUTORS.md) for a list of authors and contributors.
The Python code is Copyright (C) 2018-2023 Esukhia, provided under [MIT License](LICENSE). See [CONTRIBUTORS.md](CONTRIBUTORS.md) for a list of authors and contributors.
2 changes: 1 addition & 1 deletion bophono/UnicodeToApi.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
import csv
import os
from.sdtrie import *
from .sdtrie import *
from .PhonStateMST import *
from .PhonStateCAT import *
from .PhonStateKVP import *
Expand Down
2 changes: 1 addition & 1 deletion bophono/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .PhonStateCAT import *
from .apitochinese import *

VERSION = "0.1.0"
VERSION = "0.1.1"
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import os
import sys
from setuptools import setup, find_packages
import setuptools
from pkg_resources import parse_version

assert(parse_version(setuptools.__version__) >= parse_version("38.6.0"))

Expand All @@ -14,7 +16,7 @@ def read(fname):

setup(
name="bophono",
version="0.1.0", #edit version in __init__.py
version="0.1.1", #edit version in __init__.py
author="Esukhia development team",
author_email="[email protected]",
description="Python utils for Tibetan phonetics in different dialects",
Expand Down

0 comments on commit 68b3360

Please sign in to comment.