From c616886869e921d8047ef2729138fccc28fd519c Mon Sep 17 00:00:00 2001 From: Hong-Thai Nguyen Date: Tue, 8 Dec 2020 09:38:26 +0100 Subject: [PATCH 1/2] Remove relative import --- cfonb/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cfonb/__init__.py b/cfonb/__init__.py index fb719c6..e69de29 100644 --- a/cfonb/__init__.py +++ b/cfonb/__init__.py @@ -1,2 +0,0 @@ -# -from .parser.statement import StatementReader From 28a2dcee629bb3aa31a958af2311685828ac054e Mon Sep 17 00:00:00 2001 From: Hong-Thai Nguyen Date: Tue, 8 Dec 2020 09:38:51 +0100 Subject: [PATCH 2/2] Prepare release --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b3279e0..5f59d49 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '2.4' +version = '2.5' long_description = open('README.rst').read() @@ -14,7 +14,7 @@ author='Dhatim', author_email='contact@dhatim.com', url='https://github.com/dhatim/python-cfonb', - download_url = 'https://github.com/dhatim/python-cfonb/archive/2.4.tar.gz', + download_url = 'https://github.com/dhatim/python-cfonb/archive/2.5.tar.gz', license='LGPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True,