summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-09-28 12:00:49 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2014-09-28 12:00:49 -0400
commitb44158ee2190cabf2c6c26ffa98d6e22a98aac58 (patch)
tree3243cbb99f798c05d9325824f38b73990abaabd9
parent0f74a2c128447f0546acab23fbfe87be9a3ea9b6 (diff)
downloadcryptography-b44158ee2190cabf2c6c26ffa98d6e22a98aac58.tar.gz
Added an explanatory comment.
-rw-r--r--tasks.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tasks.py b/tasks.py
index 50eb90ae2..860584b1c 100644
--- a/tasks.py
+++ b/tasks.py
@@ -94,6 +94,9 @@ def release(version):
session = requests.Session()
+ # This tells the CDN to delete the cached response for the URL. We do this
+ # so that the Jenkins builders will see the new sdist immediately when they
+ # go to build the wheels.
response = session.request(
"PURGE", "https://pypi.python.org/simple/cryptography/"
)