Skip to content

Commit

Permalink
Upgrade dependencies, remove celery code as it is not used in AWS dep…
Browse files Browse the repository at this point in the history
…loyments
  • Loading branch information
sei-eecoff committed May 19, 2022
1 parent 44c1f8d commit 4dde587
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 62 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can report a bug, feature request, or other issue in this GitHub project. VI
VINCE, a Django application, is designed to run in Amazon Web Services (AWS)
and is developed around many
of AWS services such as Cognito, S3, ElasticBeanstalk, Cloudfront, SQS, SNS,
and SES. VINCE users the python library,
and SES. VINCE uses the python library,
[warrant](https://github.com/capless/warrant), for AWS Cognito
authentication. [Warrant](https://github.com/capless/warrant) has been
slightly modified and is included with VINCE.
Expand Down
2 changes: 0 additions & 2 deletions bigvince/settings_.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
import boto3
import environ
import urllib
from celery.schedules import crontab

env = environ.Env(
DEBUG=(bool, False)
Expand Down Expand Up @@ -132,7 +131,6 @@
'widget_tweaks',
'django.contrib.humanize',
'django_countries',
'django_celery_results',
'storages',
]

Expand Down
11 changes: 5 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ asn1crypto==1.4.0
awscli==1.20.57
beautifulsoup4==4.8.2
billiard==3.6.0.0
bleach==3.1.3
bleach==3.3.1
bleach-whitelist==0.0.10
boto==2.49.0
boto3==1.18.57
botocore==1.21.57
celery==4.3.0
certifi==2021.10.8
cffi==1.13.2
chardet==3.0.4
Expand All @@ -20,7 +19,7 @@ cryptography==2.8
cvelib==0.7.0
click==8.0.4
dictdiffer==0.8.1
Django==2.2.26
Django==2.2.28
django-appconf==1.0.3
django-celery-results==1.0.4
django-countries==5.3.3
Expand All @@ -29,7 +28,7 @@ django-qr-code==1.1.0
django-ses==1.0.3
django-storages==1.7.1
django-widget-tweaks==1.4.3
djangorestframework==3.10.3
djangorestframework==3.11.2
docutils==0.14
ecdsa==0.13.2
envs==1.3
Expand All @@ -39,7 +38,7 @@ future==0.17.1
idna==3.3
jmespath==0.9.3
kombu==4.5.0
lxml==4.5.0
lxml==4.6.5
M2Crypto==0.36.0
Markdown==3.1
pinax-messages==2.0.2
Expand All @@ -57,7 +56,7 @@ PyYAML==5.4.1
qrcode==6.1
redis==3.2.1
requests==2.26.0
rsa==4.6
rsa==4.7
s3transfer==0.5.0
simplejson==3.17.0
six==1.12.0
Expand Down
4 changes: 2 additions & 2 deletions vince/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
# DM21-1126
########################################################################
from __future__ import absolute_import, unicode_literals
from .celery import app as celery_app
#from .celery import app as celery_app

__all__ = ['celery_app']
#__all__ = ['celery_app']

default_app_config = 'vince.apps.VinceTrackConfig'

51 changes: 0 additions & 51 deletions vince/celery.py

This file was deleted.

0 comments on commit 4dde587

Please sign in to comment.