Update Dependencies

This commit is contained in:
Aaron Kable 2020-01-23 00:34:34 +00:00 committed by colcrunch
parent 98b799d821
commit c07f59201e
2 changed files with 9 additions and 11 deletions

View File

@ -19,7 +19,7 @@ Alliance Auth can be installed on any operating system. Dependencies are provide
### Python ### Python
Alliance Auth requires python3.4 or higher. Ensure it is installed on your server before proceeding. Alliance Auth requires python3.5 or higher. Ensure it is installed on your server before proceeding.
Ubuntu: Ubuntu:

View File

@ -11,28 +11,27 @@ install_requires = [
'mysqlclient', 'mysqlclient',
'dnspython', 'dnspython',
'passlib', 'passlib',
'requests>=2.9.1', 'requests>=2.9.1,<3.0.0',
'bcrypt', 'bcrypt',
'python-slugify>=1.2', 'python-slugify>=1.2',
'requests-oauthlib', 'requests-oauthlib',
'semantic_version', 'semantic_version',
'redis<=2.10.6', 'redis>=3.3.1,<4.0.0',
'celery>=4.0.2,<4.3.0', 'celery>=4.3.0,<5.0.0',
'celery_once', 'celery_once',
'django>=2.0,<3.0', 'django>=2.0,<3.0',
'django-bootstrap-form', 'django-bootstrap-form',
'django-registration==2.4', 'django-registration==2.4',
'django-sortedm2m', 'django-sortedm2m',
'django-redis-cache==1.8.1', 'django-redis-cache>=2.1.0,<3.0.0',
'django-celery-beat<=1.1.1', 'django-celery-beat>=1.1.1,<2.0.0',
'openfire-restapi', 'openfire-restapi',
'sleekxmpp', 'sleekxmpp',
'adarnauth-esi>=1.4.10,<2.0', 'django-esi>=1.5.0,<2.0'
'kombu<=4.3.0',
] ]
testing_extras = [ testing_extras = [
@ -52,10 +51,9 @@ setup(
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
install_requires=install_requires, install_requires=install_requires,
extras_require={ extras_require={
'testing': testing_extras, 'testing': testing_extras
':python_version=="3.4"': ['typing'],
}, },
python_requires='~=3.4', python_requires='~=3.5',
license='GPLv2', license='GPLv2',
packages=['allianceauth'], packages=['allianceauth'],
url='https://gitlab.com/allianceauth/allianceauth', url='https://gitlab.com/allianceauth/allianceauth',