Skip to content

Commit

Permalink
Merge pull request #2811 from chaoss/dependabot/pip/tornado-6.4.1
Browse files Browse the repository at this point in the history
Bump tornado from 6.3.3 to 6.4.1
  • Loading branch information
sgoggins authored Jun 11, 2024
2 parents 28abb83 + 64b859b commit dfc8c34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions docs/new-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,23 @@ 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 &&
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
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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"httpx==0.23.0", # 0.23.0
"eventlet==0.35.2",
"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.6.1",
'Werkzeug~=2.0.0',
Expand Down

0 comments on commit dfc8c34

Please sign in to comment.