Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ def read(*rnames):
zip_safe=False,
install_requires=[
'pysaml2==4.0.5',
'python-memcached==1.48',
'python-memcached>=1.48',
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd actually prefer to limit it to versions less than 2 at the same time. Also, could you please check that it really works with all newer versions released so far? Thanks.

],
)