BIG UPD: migrate to python 3.10 and django 3.2
All checks were successful
buildbot/tox Build done.

This commit is contained in:
2022-06-07 16:07:08 +02:00
parent edd4050935
commit 8610e2a557
36 changed files with 192 additions and 91 deletions

View File

@@ -22,12 +22,7 @@ class SetupPythonEnvironment(MyCommand):
def run(self):
python_bin = sys.executable if sys.executable else 'python'
python_ver = sys.version_info.major
if python_ver == 2:
path = os.path.join('env', 'python2')
symlink_path = os.path.join('env', 'python')
venv_module = 'virtualenv'
prompt = '(py2-dav) '
elif python_ver == 3:
if python_ver == 3:
path = os.path.join('env', 'python3')
symlink_path = os.path.join('env', 'python')
venv_module = 'venv'
@@ -97,7 +92,7 @@ class QuickSetup(MyCommand):
setup(
name='django-dav-events',
version='2.0',
version='2.1',
description='A django based web application project to organize DAV Events.',
url='https://touren.alpenverein-karlsruhe.de',
author='Jens Kleineheismann',
@@ -116,11 +111,12 @@ setup(
},
install_requires=[
'babel',
'django >= 1.11, < 2.0',
'django-extensions',
'django-bootstrap3 < 12',
'django-countries < 6',
'django-datetime-widget',
#'django >= 1.11, < 2.0',
'django >= 1.11, < 3.3',
# 'django-extensions',
'django-bootstrap3',
'django-countries',
'django-datetime-widget2',
'pytz',
'selenium',
'coverage',