install: Desupport Ubuntu 22.04 for now.

Ubuntu 22.04 pushed a post-feature-freeze update to Python 3.10,
breaking virtual environments in a Debian patch
(https://bugs.launchpad.net/ubuntu/+source/python3.10/+bug/1962791).
Also, our antique version of Tornado doesn’t work in 3.10, and we’ll
need to do some work to upgrade that.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2022-03-06 14:44:19 -08:00 committed by Tim Abbott
parent 5ee5a7e635
commit 646e466341
4 changed files with 4 additions and 6 deletions

View File

@ -12,7 +12,7 @@ Contents:
If you'd like to install a Zulip development environment on a computer If you'd like to install a Zulip development environment on a computer
that's running one of: that's running one of:
- Ubuntu 20.04 Focal, 22.04 Jammy (beta) - Ubuntu 20.04 Focal
- Debian 10 Buster, 11 Bullseye - Debian 10 Buster, 11 Bullseye
- CentOS 7 (beta) - CentOS 7 (beta)
- Fedora 33 and 34 (beta) - Fedora 33 and 34 (beta)

View File

@ -49,7 +49,7 @@ a proxy to access the internet.)
- **All**: 2GB available RAM, Active broadband internet connection, [GitHub account][set-up-git]. - **All**: 2GB available RAM, Active broadband internet connection, [GitHub account][set-up-git].
- **macOS**: macOS (10.11 El Capitan or newer recommended) - **macOS**: macOS (10.11 El Capitan or newer recommended)
- **Ubuntu LTS**: 20.04 or 22.04 - **Ubuntu LTS**: 20.04
- or **Debian**: 10 "buster" or 11 "bullseye" - or **Debian**: 10 "buster" or 11 "bullseye"
- **Windows**: Windows 64-bit (Win 10 recommended), hardware - **Windows**: Windows 64-bit (Win 10 recommended), hardware
virtualization enabled (VT-x or AMD-V), administrator access. virtualization enabled (VT-x or AMD-V), administrator access.

View File

@ -5,7 +5,6 @@ To run a Zulip server, you will need:
- A dedicated machine or VM - A dedicated machine or VM
- A supported OS: - A supported OS:
- Ubuntu 20.04 Focal - Ubuntu 20.04 Focal
- Ubuntu 22.04 Jammy
- Debian 11 Bullseye - Debian 11 Bullseye
- Debian 10 Buster - Debian 10 Buster
- At least 2GB RAM, and 10GB disk space - At least 2GB RAM, and 10GB disk space
@ -34,7 +33,7 @@ on issues you'll encounter](install-existing-server.md).
#### Operating system #### Operating system
Ubuntu 20.04 Focal, Ubuntu 22.04 Jammy, Debian 11 Bullseye, and Debian 10 Ubuntu 20.04 Focal, Debian 11 Bullseye, and Debian 10
Buster are supported for running Zulip in production. You can also Buster are supported for running Zulip in production. You can also
run Zulip on other platforms that support Docker using run Zulip on other platforms that support Docker using
[docker-zulip][docker-zulip-homepage]. [docker-zulip][docker-zulip-homepage].

View File

@ -212,7 +212,7 @@ if [ -f /etc/os-release ]; then
fi fi
case "$os_id $os_version_id" in case "$os_id $os_version_id" in
'debian 10' | 'debian 11' | 'ubuntu 20.04' | 'ubuntu 22.04') ;; 'debian 10' | 'debian 11' | 'ubuntu 20.04') ;;
*) *)
set +x set +x
cat <<EOF cat <<EOF
@ -223,7 +223,6 @@ Zulip in production is supported only on:
- Debian 10 "buster" - Debian 10 "buster"
- Debian 11 "bullseye" - Debian 11 "bullseye"
- Ubuntu 20.04 LTS "focal" - Ubuntu 20.04 LTS "focal"
- Ubuntu 22.04 LTS "jammy"
For more information, see: For more information, see:
https://zulip.readthedocs.io/en/latest/production/requirements.html https://zulip.readthedocs.io/en/latest/production/requirements.html