From 0e3143009cdffbc37ea97c5a5c852023cc77b84b Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Fri, 10 Jun 2016 15:01:05 +0300 Subject: [PATCH 1/3] Depend on newer version that are Python3 compatible --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index afa6931a..823fd87b 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def read(*rnames): include_package_data=True, zip_safe=False, install_requires=[ - 'pysaml2==4.0.5', - 'python-memcached==1.48', + 'pysaml2>=4.0.5', + 'python-memcached>=1.48', ], ) From 53f2c01368740f3b2660a7a23eb9249ee6cf9a48 Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Mon, 13 Jun 2016 14:12:56 +0300 Subject: [PATCH 2/3] boilerplate gitignore --- .gitignore | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..6137e326 --- /dev/null +++ b/.gitignore @@ -0,0 +1,81 @@ +*$py.class +*,cover +*.egg +*.egg-info/ +*.log +*.manifest +*.mo +*.pid +*.pot +*.py[cod] +*.pyc +*.seed +*.so +*.spec +*.stTheme.cache +*.sublime-workspace +*.tmlanguage.cache +*.tmPreferences.cache +._* +.AppleDouble +.cache +.coverage +.coverage.* +.DS_Store +.eggs/ +.env +.grunt +.hypothesis/ +.idea +.installed.cfg +.ipynb_checkpoints +.lock-wscript +.LSOverride +.node_repl_history +.npm +.nyc_output +.Python +.python-version +.ropeproject +.scrapy +.spyderproject +.tox/ +__pycache__/ +_build +bower_components +build/ +build/Release +celerybeat-schedule +coverage +coverage.xml +develop-eggs/ +dist/ +docs/_build/ +downloads/ +eggs/ +env/ +ENV/ +htmlcov/ +instance/ +jspm_packages +lib-cov +lib/ +lib64/ +local_settings.py +logs +my_test_project/* +node_modules +nosetests.xml +npm-debug.log* +parts/ +pids +pip-delete-this-directory.txt +pip-log.txt +repo_name +sdist/ +sftp-config.json +renta_intra/static/css/* +renta_intra/static/js/* +target/ +var/ +venv/ From dabfd62f8d93cc707c8c20be4317877b52e3278c Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Fri, 17 Jun 2016 16:40:11 +0300 Subject: [PATCH 3/3] Stick to exact pysaml version """We actually have some unresolved issues with pysaml2 compatibility, so I prefer sticking with the exact version which is currently considered the best.""" --Jozef --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 823fd87b..1c522d0c 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def read(*rnames): include_package_data=True, zip_safe=False, install_requires=[ - 'pysaml2>=4.0.5', + 'pysaml2==4.0.5', 'python-memcached>=1.48', ], )