Skip to content

Commit

Permalink
Merge pull request. Dumped version; master is now v2.1.2
Browse files Browse the repository at this point in the history
from Alpha2 to Master
  • Loading branch information
sandes authored May 18, 2020
2 parents ad46f80 + a0808ae commit d5cdf1f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
Binary file added dist/zipfly-2.1.2.tar.gz
Binary file not shown.
17 changes: 8 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3,5)

# This check and everything above must remain compatible with Python 2.7.
if CURRENT_PYTHON <= REQUIRED_PYTHON:
# This check and everything above must remain compatible with Python 3.5
if CURRENT_PYTHON < REQUIRED_PYTHON:

sys.stderr.write("""
==========================
Expand All @@ -23,15 +23,15 @@
name='zipfly',
packages=['zipfly'],
description='ZipFly',
version='2.1.1',
version='2.1.2',
url='http://github.com/buzonIO/zipfly',
download_url = 'https://github.com/BuzonIO/zipfly/archive/v2.1.1.tar.gz',
download_url = 'https://github.com/BuzonIO/zipfly/archive/v2.1.2.tar.gz',
author='Buzon',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
long_description_content_type='text/markdown',
author_email='support@buzon.io',
keywords=['zipfly','buzon'],
install_requires=[],
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand All @@ -41,6 +41,5 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',

],
)
],
)
2 changes: 1 addition & 1 deletion zipfly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import unicode_literals, print_function, with_statement

__version__ = '2.1.1'
__version__ = '2.1.2'
__author__ = 'Santiago Debus - Grow HQ, Inc.'
__license__ = 'MIT'

Expand Down

0 comments on commit d5cdf1f

Please sign in to comment.