Skip to content

Commit

Permalink
2.1.1 alpha - release
Browse files Browse the repository at this point in the history
  • Loading branch information
sandes committed May 16, 2020
1 parent 40a4bff commit 8e8a922
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
REQUIRED_PYTHON = (3,5)

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

sys.stderr.write("""
==========================
Expand All @@ -23,9 +23,9 @@
name='zipfly',
packages=['zipfly'],
description='ZipFly',
version='2.1.0',
version='2.1.1',
url='http://github.com/buzonIO/zipfly',
download_url = 'https://github.com/BuzonIO/zipfly/archive/v2.1.0.tar.gz',
download_url = 'https://github.com/BuzonIO/zipfly/archive/v2.1.1.tar.gz',
author='Buzon',
author_email='support@buzon.io',
keywords=['zipfly','buzon'],
Expand Down
2 changes: 1 addition & 1 deletion zipfly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
from __future__ import unicode_literals, print_function, with_statement

__version__ = '2.1.0'
__version__ = 'a2.1.1'
__author__ = 'Santiago Debus - Grow HQ, Inc.'
__license__ = 'MIT'

Expand Down

0 comments on commit 8e8a922

Please sign in to comment.