diff --git a/_multibuild b/_multibuild
index 73ab5e8..6a3bda2 100644
--- a/_multibuild
+++ b/_multibuild
@@ -2,4 +2,5 @@
test-py38
test-py39
test-py310
+
diff --git a/distributed-2023.1.1-gh.tar.gz b/distributed-2023.1.1-gh.tar.gz
deleted file mode 100644
index 59552fb..0000000
--- a/distributed-2023.1.1-gh.tar.gz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:2d6e489b6c3614d359bd562c69a9451ef07baf6aedc1cd1c83e2026424a3176f
-size 1809809
diff --git a/distributed-2023.2.0-gh.tar.gz b/distributed-2023.2.0-gh.tar.gz
new file mode 100644
index 0000000..b2a2b69
--- /dev/null
+++ b/distributed-2023.2.0-gh.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5db987e28a72c1844736becb9b25e4e5bf6c70d6d002cf98a9d7af9a1f9785c3
+size 1810831
diff --git a/python-distributed.changes b/python-distributed.changes
index 23a5c2a..467a76b 100644
--- a/python-distributed.changes
+++ b/python-distributed.changes
@@ -1,3 +1,18 @@
+-------------------------------------------------------------------
+Sun Feb 26 00:09:53 UTC 2023 - Ben Greiner
+
+- Prepare test multiflavors for python311, but skip python311
+ * Numba is not ready for python 3.11 yet gh#numba/numba#8304
+
+-------------------------------------------------------------------
+Fri Feb 17 09:05:32 UTC 2023 - Ben Greiner
+
+- Update to 2023.2.0
+ ## Enhancements
+ * Rate limit the worker memory logs (GH#7529) Florian Jetter
+ * Move P2P barrier logic to scheduler extension (GH#7519) Hendrik
+ Makait
+
-------------------------------------------------------------------
Sun Feb 5 13:22:38 UTC 2023 - Ben Greiner
diff --git a/python-distributed.spec b/python-distributed.spec
index e74f67f..423f2e1 100644
--- a/python-distributed.spec
+++ b/python-distributed.spec
@@ -22,29 +22,41 @@
%define psuffix -test-py38
%define skip_python39 1
%define skip_python310 1
+%define skip_python311 1
%bcond_without test
%endif
%if "%{flavor}" == "test-py39"
%define psuffix -test-py39
%define skip_python38 1
%define skip_python310 1
+%define skip_python311 1
%bcond_without test
%endif
%if "%{flavor}" == "test-py310"
%define psuffix -test-py310
%define skip_python38 1
%define skip_python39 1
+%define skip_python311 1
+%bcond_without test
+%endif
+%if "%{flavor}" == "test-py311"
+%define psuffix -test-py311
+%define skip_python38 1
+%define skip_python39 1
+%define skip_python310 1
%bcond_without test
%endif
%if "%{flavor}" == ""
%bcond_with test
%endif
+# Numba is not ready for python 3.11 yet gh#numba/numba#8304
+%define skip_python311 1
# use this to run tests with xdist in parallel, unfortunately fails server side
%bcond_with paralleltests
Name: python-distributed%{psuffix}
# ===> Note: python-dask MUST be updated in sync with python-distributed! <===
-Version: 2023.1.1
+Version: 2023.2.0
Release: 0
Summary: Library for distributed computing with Python
License: BSD-3-Clause