Skip to content

Commit

Permalink
version bump + fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
drupchen committed Aug 7, 2020
1 parent 8e20293 commit 88a8644
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). It follows [some conventions](http://keepachangelog.com/).

## [0.2.0] - 2020-08-07
### Fixed
- packaging in Pypi

## [0.1.0] - 2020-08-07
### Added
- Initial release :
Expand Down
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def read(fname):

setuptools.setup(
name="tibetan_sort",
version="0.1",
version="0.2.0", # also modify tibetan_sort/__init__.py
author="Esukhia development team",
author_email="[email protected]",
description="Tibetan Sorting Tool",
Expand All @@ -43,9 +43,5 @@ def read(fname):
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Tibetan",
],
package_data={
"tibetan_sort": []
},
python_requires=">=3.6",
install_requires=[],
)
2 changes: 1 addition & 1 deletion tests.py → tests/tests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# The tests have been copied from [Élie Roux's repo](https://github.com/eroux/tibetan-collation/blob/master/implementations/Unicode/test.py)
#
from tibetan_sort import TibetanSort
from tibetan_sort.tibetan_sort import TibetanSort

c = TibetanSort()

Expand Down
4 changes: 4 additions & 0 deletions tibetan_sort/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# coding: utf8
from .tibetan_sort import TibetanSort

__version__ = "0.2.0"
File renamed without changes.

0 comments on commit 88a8644

Please sign in to comment.