From 5a67f11b14cac25e84420ae39cf69960fae30a44 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Tue, 4 Jun 2024 23:24:51 -0500 Subject: [PATCH 1/4] Update new-install.md Signed-off-by: Sean P. Goggins --- docs/new-install.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/new-install.md b/docs/new-install.md index c48e5e8ae7..8d0d313670 100644 --- a/docs/new-install.md +++ b/docs/new-install.md @@ -20,9 +20,9 @@ sudo apt update && sudo apt upgrade && sudo apt install software-properties-common && sudo apt-get install libpq-dev && -sudo apt install python3-dev && -sudo apt install python3.10-venv && -sudo apt install postgresql postgresql-contrib postgresql-client && +sudo apt install python3.11-dev && +sudo apt install python3.11-venv && +sudo apt install postgresql-16 postgresql-contrib-16 postgresql-client-16 && sudo apt install build-essential && sudo apt install redis-server && # required sudo apt install erlang && # required From 50edb1aaec03638b4f04db79c3fa01c1c4855651 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Tue, 4 Jun 2024 23:29:14 -0500 Subject: [PATCH 2/4] Update new-install.md Signed-off-by: Sean P. Goggins --- docs/new-install.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/new-install.md b/docs/new-install.md index 8d0d313670..5256866c23 100644 --- a/docs/new-install.md +++ b/docs/new-install.md @@ -15,7 +15,8 @@ We default to this version of Ubuntu for the moment because Augur does not yet s Here we ensure your system is up to date, install required python libraries, install postgresql, and install our queuing infrastructure, which is composed of redis-server and rabbitmq-server ### Executable -```shell +```shell +sudo add-apt-repository ppa:deadsnakes/ppa && sudo apt update && sudo apt upgrade && sudo apt install software-properties-common && From 2eb423f1701ebb7a95ee87a8d73cdc690f2a4ab3 Mon Sep 17 00:00:00 2001 From: "Sean P. Goggins" Date: Tue, 4 Jun 2024 23:33:26 -0500 Subject: [PATCH 3/4] Update new-install.md Signed-off-by: Sean P. Goggins --- docs/new-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/new-install.md b/docs/new-install.md index 5256866c23..2b2e5c1947 100644 --- a/docs/new-install.md +++ b/docs/new-install.md @@ -31,7 +31,7 @@ sudo apt install rabbitmq-server && #required sudo snap install go --classic && #required: Go Needs to be version 1.19.x or higher. Snap is the package manager that gets you to the right version. Classic enables it to actually be installed at the correct version. sudo apt install nginx && # required for hosting sudo add-apt-repository ppa:mozillateam/firefox-next && -sudo apt install firefox=115.0~b2+build1-0ubuntu0.22.04.1 && +sudo apt install firefox=127.0~b9+build1-0ubuntu0.24.04.1 sudo apt install firefox-geckodriver # You will almost certainly need to reboot after this. From 64b859b2556cb568f75e4d9022470052fa7204d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 23:34:20 +0000 Subject: [PATCH 4/4] Bump tornado from 6.3.3 to 6.4.1 Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.3.3 to 6.4.1. - [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst) - [Commits](https://github.com/tornadoweb/tornado/compare/v6.3.3...v6.4.1) --- updated-dependencies: - dependency-name: tornado dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 279496bf82..a5aa039616 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ "httpx==0.23.0", # 0.23.0 "eventlet==0.33.3", "flower==2.0.1", - "tornado==6.3.3", # added because it sometimes errors when tornado is not 6.1 even though nothing we install depends on it + "tornado==6.4.1", # added because it sometimes errors when tornado is not 6.1 even though nothing we install depends on it "pylint==2.15.5", "dnspython==2.2.1", 'Werkzeug~=2.0.0',