From 0a819704e4471ad2379500239bf4195f31ba9dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskari=20P=C3=A9tas?= Date: Fri, 24 Jun 2016 00:34:13 +0300 Subject: [PATCH 1/3] Changed name and updated version --- setup.py | 2 +- src/xmlsec/meta.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 93b2a87f..231fa2f3 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def make_extension(name, cython=True): setup( - name='xmlsec', + name='xmlsec-aop', version=meta.version, description=meta.description, classifiers=[ diff --git a/src/xmlsec/meta.py b/src/xmlsec/meta.py index 9ea72b40..2131eb7e 100644 --- a/src/xmlsec/meta.py +++ b/src/xmlsec/meta.py @@ -1,2 +1,2 @@ -version = '0.6.0' +version = '0.6.0.1' description = 'Python bindings for the XML Security Library.' From 66a238dccf9bdbd0f7073184dc0cb5bb3cd537ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskari=20P=C3=A9tas?= Date: Fri, 24 Jun 2016 00:42:03 +0300 Subject: [PATCH 2/3] Changed URL --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 231fa2f3..9af66e06 100644 --- a/setup.py +++ b/setup.py @@ -99,7 +99,7 @@ def make_extension(name, cython=True): ], author='Ryan Leckey', author_email='support@mehcode.com', - url='https://github.com/mehcode/python-xmlsec', + url='https://github.com/aop/python-xmlsec', setup_requires=[ 'setuptools_cython', 'pkgconfig', From 3e900e65b93b026858a0814b52b3c73f656a2c6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskari=20P=C3=A9tas?= Date: Mon, 26 Sep 2016 15:46:16 +0300 Subject: [PATCH 3/3] Fixed Cython to a fixed version --- setup.py | 2 ++ src/xmlsec/meta.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9af66e06..4fd9cbc5 100644 --- a/setup.py +++ b/setup.py @@ -101,11 +101,13 @@ def make_extension(name, cython=True): author_email='support@mehcode.com', url='https://github.com/aop/python-xmlsec', setup_requires=[ + 'Cython == 0.24.1', 'setuptools_cython', 'pkgconfig', 'lxml >= 3.0', ], install_requires=[ + 'Cython == 0.24.1', 'lxml >= 3.0', ], extras_require={ diff --git a/src/xmlsec/meta.py b/src/xmlsec/meta.py index 2131eb7e..ae23830d 100644 --- a/src/xmlsec/meta.py +++ b/src/xmlsec/meta.py @@ -1,2 +1,2 @@ -version = '0.6.0.1' +version = '0.6.0.2' description = 'Python bindings for the XML Security Library.'