Skip to content

Commit

Permalink
Merge pull request #601 from ubccr/upgrade-django-4.2
Browse files Browse the repository at this point in the history
Upgrade to Django 4.2.11
  • Loading branch information
aebruno authored Mar 26, 2024
2 parents 4897bd6 + b15f32b commit f3a6211
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 48 deletions.
1 change: 1 addition & 0 deletions coldfront/config/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
sys.modules['fontawesome_free'] = __import__('fontawesome-free')
INSTALLED_APPS += [
'crispy_forms',
'crispy_bootstrap4',
'sslserver',
'django_q',
'simple_history',
Expand Down
54 changes: 30 additions & 24 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,34 +1,40 @@
arrow==1.2.3
bibtexparser==1.4.0
arrow==1.3.0
asgiref==3.7.2
bibtexparser==1.4.1
blessed==1.20.0
chardet==5.1.0
Django==3.2.20
django-crispy-forms==1.14.0
Faker==11.3.0
fontawesome-free==5.15.4
django-environ==0.9.0
django-model-utils==4.3.1
certifi==2024.2.2
chardet==5.2.0
charset-normalizer==3.3.2
Django==4.2.11
django-crispy-forms==2.1
crispy-bootstrap4==2024.1
django-environ==0.11.2
django-model-utils==4.4.0
django-picklefield==3.1
django-q==1.3.9
django-settings-export==1.2.1
django-simple-history==3.2.0
django-split-settings==1.2.0
django-simple-history==3.5.0
django-split-settings==1.3.0
django-sslserver==0.22
django-su==1.0.0
doi2bib==0.4.0
factory-boy==3.2.1
future==0.18.3
humanize==4.6.0
idna==3.4
pyparsing==3.0.9
python-dateutil==2.8.2
python-memcached==1.59
pytz==2022.7.1
factory-boy==3.3.0
Faker==24.1.0
fontawesome-free==5.15.4
FormEncode==2.1.0
future==1.0.0
humanize==4.9.0
idna==3.6
pyparsing==3.1.2
python-dateutil==2.9.0.post0
python-memcached==1.62
pytz==2024.1
redis==3.5.3
requests==2.28.2
requests==2.31.0
six==1.16.0
sqlparse==0.4.2
sqlparse==0.4.4
text-unidecode==1.3
urllib3==1.26.14
wcwidth==0.2.6
formencode==2.0.1
types-python-dateutil==2.8.19.20240106
typing_extensions==4.10.0
urllib3==2.2.1
wcwidth==0.2.13
54 changes: 30 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,40 +24,46 @@
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'arrow==1.2.3',
'bibtexparser==1.4.0',
'arrow==1.3.0',
'asgiref==3.7.2',
'bibtexparser==1.4.1',
'blessed==1.20.0',
'chardet==5.1.0',
'Django==3.2.20',
'django-crispy-forms==1.14.0',
'Faker==11.3.0',
'fontawesome-free==5.15.4',
'django-environ==0.9.0',
'django-model-utils==4.3.1',
'certifi==2024.2.2',
'chardet==5.2.0',
'charset-normalizer==3.3.2',
'Django==4.2.11',
'django-crispy-forms==2.1',
'crispy-bootstrap4==2024.1',
'django-environ==0.11.2',
'django-model-utils==4.4.0',
'django-picklefield==3.1',
'django-q==1.3.9',
'django-settings-export==1.2.1',
'django-simple-history==3.2.0',
'django-split-settings==1.2.0',
'django-simple-history==3.5.0',
'django-split-settings==1.3.0',
'django-sslserver==0.22',
'django-su==1.0.0',
'doi2bib==0.4.0',
'factory-boy==3.2.1',
'future==0.18.3',
'humanize==4.6.0',
'idna==3.4',
'pyparsing==3.0.9',
'python-dateutil==2.8.2',
'python-memcached==1.59',
'pytz==2022.7.1',
'factory-boy==3.3.0',
'Faker==24.1.0',
'fontawesome-free==5.15.4',
'FormEncode==2.1.0',
'future==1.0.0',
'humanize==4.9.0',
'idna==3.6',
'pyparsing==3.1.2',
'python-dateutil==2.9.0.post0',
'python-memcached==1.62',
'pytz==2024.1',
'redis==3.5.3',
'requests==2.28.2',
'requests==2.31.0',
'six==1.16.0',
'sqlparse==0.4.2',
'sqlparse==0.4.4',
'text-unidecode==1.3',
'urllib3==1.26.14',
'wcwidth==0.2.6',
'formencode==2.0.1',
'types-python-dateutil==2.8.19.20240106',
'typing_extensions==4.10.0',
'urllib3==2.2.1',
'wcwidth==0.2.13',
],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit f3a6211

Please sign in to comment.