Skip to content

Commit

Permalink
v2.1.2: Remove __version__.py and default-config.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcabd committed Mar 23, 2021
1 parent 32f7497 commit 47e6583
Show file tree
Hide file tree
Showing 8 changed files with 354 additions and 369 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
include arabic_reshaper/__init__.py
include arabic_reshaper/__version__.py
include arabic_reshaper/arabic_reshaper.py
include arabic_reshaper/default-config.ini
include arabic_reshaper/letters.py
include arabic_reshaper/ligatures.py
include arabic_reshaper/reshaper_config.py
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ form of letters.

Besides the settings above, you can enable/disable supported ligatures. For a
full list of supported ligatures and their default status check the file
[default-config.ini](default-config.ini).
[default-config.ini](https://github.com/mpcabd/python-arabic-reshaper/blob/32f7497aa24a68ab880d0248b21715928f0ce212/arabic_reshaper/default-config.ini).

There are multiple ways that you can configure the reshaper in, choose the one
that suits your deployment:
Expand Down Expand Up @@ -248,6 +248,10 @@ https://github.com/mpcabd/python-arabic-reshaper/tarball/master

## Version History

### 2.1.2

* Remove dependency on `__version__.py` and `default-config.ini` files, as they were causing problems for people who package their apps using pyinstaller or buildozer.

### 2.1.1

* Fix a warning. See #57. Thanks @fbernhart
Expand Down
3 changes: 1 addition & 2 deletions arabic_reshaper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@
ENABLE_ALL_LIGATURES)


with open(os.path.join(os.path.dirname(__file__), '__version__.py')) as fh:
exec(fh.read())
__version__ = '2.1.2'
2 changes: 1 addition & 1 deletion arabic_reshaper/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.1'
__version__ = '2.1.2'
328 changes: 0 additions & 328 deletions arabic_reshaper/default-config.ini

This file was deleted.

Loading

0 comments on commit 47e6583

Please sign in to comment.