diff --git a/README.rst b/README.rst index b94ba40..10be44a 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ It is also readily compatible with Selenium UI testing, coverage checking and continuous integration for GitHub Actions and GitLab-CI. The current version of this site is compatible with -`SODAR Core v1.0.1 `_. +`SODAR Core v1.0.2 `_. Installation for Development diff --git a/config/settings/base.py b/config/settings/base.py index 703d5ea..1bdbb55 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -304,6 +304,8 @@ CELERYD_TASK_TIME_LIMIT = 5 * 60 # http://docs.celeryproject.org/en/latest/userguide/configuration.html#task-soft-time-limit CELERYD_TASK_SOFT_TIME_LIMIT = 60 +# https://docs.celeryq.dev/en/latest/userguide/configuration.html#broker-connection-retry-on-startup +CELERY_BROKER_CONNECTION_RETRY_ON_STARTUP = False # Django REST framework diff --git a/requirements/base.txt b/requirements/base.txt index 95268d4..3b70a1c 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -8,7 +8,7 @@ setuptools>=70.0.0, <70.1 packaging>=23.2, <24.0 # Django -django>=4.2.15, <5.0 +django>=4.2.16, <5.0 # Configuration django-environ>=0.11.2, <0.12 @@ -85,6 +85,6 @@ celery>=5.3.6, <5.4 django-autocomplete-light==3.11.0 # See issue #1224 # SODAR Core -django-sodar-core==1.0.1 +django-sodar-core==1.0.2 # Use below for develop installs with a commit ID # -e git+https://github.com/bihealth/sodar-core.git@888d594d342984ab430e5e2d624c0cfda68d2eaa#egg=django-sodar-core diff --git a/utility/install_python.sh b/utility/install_python.sh index 2cab6db..863ad02 100755 --- a/utility/install_python.sh +++ b/utility/install_python.sh @@ -5,5 +5,5 @@ echo "Installing Python 3.11" echo "***********************************************" add-apt-repository -y ppa:deadsnakes/ppa apt-get -y update -apt-get -y install python3.11 python3.11-dev python3.11-venv +apt-get -y install python3.11 python3.11-dev python3.11-venv python3.11-gdbm curl https://bootstrap.pypa.io/get-pip.py | sudo -H python3.11