summaryrefslogtreecommitdiff
path: root/dev-python/pytest-flask/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pytest-flask/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pytest-flask/files')
-rw-r--r--dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch b/dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch
deleted file mode 100644
index e5c748b61174..000000000000
--- a/dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 6cc0d1162f31302cd95fcca49744847da3071672 Mon Sep 17 00:00:00 2001
-From: Alfred Wingate <parona@protonmail.com>
-Date: Sat, 21 Mar 2026 21:01:11 +0200
-Subject: [PATCH] Explicitly use the fork start method on all platforms
-
-The default has changed away from fork on all platforms in python 3.14.
-
-See-Also: cfc804776f24c7230627b15bd935e5da5f809db7
-See-Also: https://github.com/python/cpython/issues/84559
-Signed-off-by: Alfred Wingate <parona@protonmail.com>
---- a/src/pytest_flask/live_server.py
-+++ b/src/pytest_flask/live_server.py
-@@ -9,9 +9,8 @@ import time
- import pytest
-
-
--# force 'fork' on macOS
--if platform.system() == "Darwin":
-- multiprocessing = multiprocessing.get_context("fork")
-+# errors on start methods other than "fork". Default changed away from it for MacOS in 3.8 and the rest of the platforms in 3.14.
-+multiprocessing = multiprocessing.get_context("fork") # type: ignore[assignment]
-
-
- class LiveServer: # pragma: no cover
---
-2.54.0
-