Skip to content

Commit 6597c7c

Browse files
authored
Merge pull request #79 from Syncurity/py_requires_fix
fix python_requires py2 issue
2 parents 76b9ebd + b852831 commit 6597c7c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
2-
[![PyPI3](https://img.shields.io/badge/pypi-1.5.9-blue.svg)](https://pypi.org/project/irflow-client/)
2+
[![PyPI3](https://img.shields.io/badge/pypi-1.5.10-blue.svg)](https://pypi.org/project/irflow-client/)
33
[![Documentation Status](https://readthedocs.com/projects/syncurity-irflow-sdk-python/badge/?version=latest)](https://syncurity-irflow-sdk-python.readthedocs-hosted.com/en/latest/?badge=latest)
44
![PyPI1](https://img.shields.io/badge/python-2.7+-brightgreen.svg)
55
![PyPI2](https://img.shields.io/badge/python-3.6+-brightgreen.svg)

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ irflow-sdk-python changelog
3939
* v1.5.7 Update .gitignore, bump requirements.txt
4040
* v1.5.8 Fix python_requires for pip 18.0+
4141
* v1.5.9 Update URLLib for https://nvd.nist.gov/vuln/detail/CVE-2019-11324
42-
42+
* v1.5.10 Fix py2 compatibility

irflow_client/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__title__ = 'irflow_client'
44
__description__ = 'A python client for Syncurity IR-Flow'
55
__url__ = 'https://syncurity.net'
6-
__version__ = '1.5.9'
6+
__version__ = '1.5.10'
77
__build__ = ''
88
__author__ = 'Syncurity'
99
__author_email__ = 'support@syncurity.net'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
packages=['irflow_client'],
3434
platforms=['Windows', 'MacOS', 'Enterprise Linux'],
3535
install_requires=base_requirements,
36-
python_requires='>=2.7.*, >=3.6',
36+
# python_requires='>=2.7.*, >=3.6',
3737
extras_require={
3838
'dev': [
3939
dev_requirements

0 commit comments

Comments
 (0)