Skip to content

Commit

Permalink
Add ToDo's for upcoming b3lb releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippKilian committed Aug 9, 2022
1 parent 292d089 commit 7120244
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions b3lb/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# ToDo: v3.1 - Delay update to Django 4.x
Django==3.2.15
django-extensions==3.2.0
requests==2.28.1
celery==5.2.7
celery-singleton==0.3.1
django-cacheops==6.1
# ToDo: v3.1 - TBD for Django 4.x
django-db-file-storage==0.5.5
django-celery-admin==0.1
django-celery-beat==2.3.0
Expand All @@ -15,4 +17,5 @@ psycopg2cffi==2.9.0
uvicorn[standard]==0.18.2
aiohttp==3.8.1
jinja2==3.1.2
# ToDo: v3.0 - drop dependency (ImageField)
Pillow==9.2.0
1 change: 1 addition & 0 deletions b3lb/rest/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ class Asset(models.Model):
tenant = models.OneToOneField(Tenant, on_delete=models.CASCADE, primary_key=True)
slide = models.FileField(upload_to='rest.AssetSlide/blob/filename/mimetype', blank=True, null=True)
slide_filename = models.CharField(max_length=250, blank=True, null=True)
# ToDo: v3.0 - change to FileField, drop Pillow dependency
logo = models.ImageField(upload_to='rest.AssetLogo/blob/filename/mimetype', blank=True, null=True)
custom_css = models.FileField(upload_to='rest.AssetCustomCSS/blob/filename/mimetype', blank=True, null=True)

Expand Down

0 comments on commit 7120244

Please sign in to comment.