summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2014-02-11 16:17:54 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2014-02-11 16:17:54 +0100
commit191f5a01dc9bdace571fa8474f4bd50743b65994 (patch)
treeea22557fa4e75bcf03f90bc646439abfa7ecdf3e
parent8c7d2e1f80901375a50a99d1903386c29a423f26 (diff)
downloadpython-setuptools-git-191f5a01dc9bdace571fa8474f4bd50743b65994.tar.gz
Issue #7: Generate both tar archive and zip archive.
-rw-r--r--CHANGES.txt8
-rwxr-xr-xsetup.cfg2
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0beaded0..602d8269 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -14,10 +14,10 @@ CHANGES
handled properly at runtime. In 2.x it was possible to get away without
including the declaration, but only at the cost of forcing namespace
packages to be imported early, which 3.0 no longer does.
-* Issue #7: Setuptools itself is now distributed as a zipfile instead of a
- tarball. This approach avoids the potential security vulnerabilities
- presented by use of tar files. It also leverages the security features added
- to ZipFile.extract in Python 2.7.4.
+* Issue #7: Setuptools itself is now distributed as a zip archive in addition to
+ tar archive. ez_setup.py now uses zip archive. This approach avoids the potential
+ security vulnerabilities presented by use of tar archives in ez_setup.py.
+ It also leverages the security features added to ZipFile.extract in Python 2.7.4.
* Issue #65: Removed deprecated Features functionality.
---
diff --git a/setup.cfg b/setup.cfg
index a78a8033..35d93b51 100755
--- a/setup.cfg
+++ b/setup.cfg
@@ -15,7 +15,7 @@ all_files = 1
upload-dir = docs/build/html
[sdist]
-formats=zip
+formats = gztar zip
[wheel]
universal=1