Skip to content

Commit 47db986

Browse files
author
livia
authored
Fix fonttools version bound format (#79)
* Fix fonttools version bound format * Bump version to 2.1.4
1 parent 6213a9e commit 47db986

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,10 @@ https://github.com/mpcabd/python-arabic-reshaper/tarball/master
248248

249249
## Version History
250250

251+
### 2.1.4
252+
253+
* Fix unparseable version bound for `fonttools` under Python 2
254+
251255
### 2.1.3
252256

253257
* 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.

arabic_reshaper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
ENABLE_ALL_LIGATURES)
1010

1111

12-
__version__ = '2.1.3'
12+
__version__ = '2.1.4'

arabic_reshaper/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.2'
1+
__version__ = '2.1.4'

meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set name = "arabic-reshaper" %}
22
{% set pypi_name = "arabic_reshaper" %}
3-
{% set version = "2.1.1" %}
3+
{% set version = "2.1.4" %}
44

55
package:
66
name: "{{ name|lower }}"
@@ -20,15 +20,15 @@ requirements:
2020
host:
2121
- configparser; # [ py < 3 ]
2222
- fonttools >=4.0 # [ py > 3 ]
23-
- fonttools >=3.0<4.0 # [ py < 3 ]
23+
- fonttools >=3.0,<4.0 # [ py < 3 ]
2424
- future
2525
- pip
2626
- python
2727
- setuptools
2828
run:
2929
- configparser; # [ py < 3 ]
3030
- fonttools >=4.0 # [ py > 3 ]
31-
- fonttools >=3.0<4.0 # [ py < 3 ]
31+
- fonttools >=3.0,<4.0 # [ py < 3 ]
3232
- future
3333
- python
3434
- setuptools

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
" applications that don't support Arabic"),
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
17-
version='2.1.3',
17+
version='2.1.4',
1818
platforms="ALL",
1919
license="MIT",
2020
packages=['arabic_reshaper'],
@@ -23,7 +23,7 @@
2323
'setuptools'],
2424
extras_require={
2525
'with-fonttools': ['fonttools>=4.0; python_version >="3"',
26-
'fonttools>=3.0<4.0; python_version <"3"']
26+
'fonttools>=3.0,<4.0; python_version <"3"']
2727
},
2828
author="Abdullah Diab",
2929
author_email="[email protected]",

0 commit comments

Comments
 (0)