summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/python-paste-remove-timing-test.patch
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-09 21:08:52 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-02-09 21:09:38 +0000
commit5754f6a0976fb06d9bf1702b9b98e991d7b4dbc0 (patch)
tree978525f64ce0f3d7c1ba8670a4a1c5f1782d1ed2 /gnu/packages/patches/python-paste-remove-timing-test.patch
parent02d1d6907ee6fcda816b287bddc4dc64878523b4 (diff)
gnu: python-paste: Update to 3.10.1.
* gnu/packages/python-web.scm (python-paste): Update to 3.10.1. [source] <uri>: Adjust it as PyPI archive has been changed. <patches>: Remove them. <snippet>: Likewise, all tests passed without modifications. [propagated-inputs]: Remove python-six and python-setuptools. [native-inputs]: Add python-setuptools. * gnu/packages/patches/python-paste-remove-timing-test.patch: Delete file. * gnu/local.mk (python-paste-remove-timing-test.patch): Deregister patch. Change-Id: I8b8560318e01fdcddfeb2f6916414e1c59cbcb6a
Diffstat (limited to 'gnu/packages/patches/python-paste-remove-timing-test.patch')
-rw-r--r--gnu/packages/patches/python-paste-remove-timing-test.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/gnu/packages/patches/python-paste-remove-timing-test.patch b/gnu/packages/patches/python-paste-remove-timing-test.patch
deleted file mode 100644
index 6ab8d1a59c..0000000000
--- a/gnu/packages/patches/python-paste-remove-timing-test.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Remove this test to verify that things were modified since a certain time.
-
-That assumption doesn't hold up when your environment doesn't have access to a
-real clock and thinks it's living in 1970 :)
-
---- a/tests/test_fileapp.py 2015-04-23 13:48:37.000000000 -0700
-+++ b/tests/test_fileapp.py 2016-02-22 19:20:08.332802417 -0800
-@@ -223,8 +223,6 @@
- status=304)
- res = app.get('/', headers={'If-None-Match': 'asdf'},
- status=200)
-- res = app.get('/', headers={'If-Modified-Since': 'Sat, 1 Jan 2005 12:00:00 GMT'},
-- status=200)
- res = app.get('/', headers={'If-Modified-Since': last_mod + '; length=100'},
- status=304)
- res = app.get('/', headers={'If-Modified-Since': 'invalid date'},