Skip to content

Commit

Permalink
Reverted deps upgrade due to Raspberry pi issues
Browse files Browse the repository at this point in the history
  • Loading branch information
RineshRamadhin authored Apr 2, 2022
1 parent 01caa7a commit a36c3b1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions compose/django/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.59.0-buster
FROM rust:1.56.1-buster

# Setup labels
LABEL version = "2.0"
Expand All @@ -19,11 +19,11 @@ RUN apt-get purge python -y
WORKDIR /install
RUN apt-get install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libsqlite3-dev \
libreadline-dev libffi-dev curl libbz2-dev -y
RUN wget https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz
RUN tar -xf Python-3.10.4.tar.xz
RUN wget https://www.python.org/ftp/python/3.10.1/Python-3.10.1.tar.xz
RUN tar -xf Python-3.10.1.tar.xz

# Configure Python
WORKDIR /install/Python-3.10.4
WORKDIR /install/Python-3.10.1
RUN ./configure --enable-optimizations

# Install Python packages
Expand Down
2 changes: 1 addition & 1 deletion compose/selenium/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.4-buster
FROM python:3.10.1-buster

# Setup labels
LABEL version = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


# Build information of the Web DL API
VERSION = '2.21.1'
VERSION = '2.21.2'
REPOSITORY = 'https://github.com/web-dl-tools/api.git'

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:
- ${FILES_PATH}:/code/files

redis:
image: redis:5.0.14-alpine
image: redis:5.0.7-alpine
container_name: web-dl_redis
deploy:
resources:
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
psycopg2==2.9.3

django==3.2.12
django==3.2.11
djangorestframework==3.13.1
django-cors-headers==3.11.0
django-cors-headers==3.10.1
django-polymorphic==3.1.0
django-rest-polymorphic==0.1.9
django-filter==21.1

sentry-sdk==1.5.8
whitenoise==6.0.0
sentry-sdk==1.5.1
whitenoise==5.3.0
channels==3.0.4
channels-redis==3.4.0
requests==2.27.1
python-magic==0.4.25
channels-redis==3.3.1
requests==2.26.0
python-magic==0.4.24
markdown==3.3.6
celery==5.2.3
redis==3.5.3

yt-dlp==2022.3.8.2
python-qbittorrent==0.4.2
selenium==4.1.3
selenium==4.1.0

0 comments on commit a36c3b1

Please sign in to comment.