diff options
| author | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2013-06-20 09:43:59 +0200 |
|---|---|---|
| committer | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2013-06-20 09:43:59 +0200 |
| commit | 0a15b36973a6eef7c6c71d79ac76852ad91af58f (patch) | |
| tree | 194eb39faeeb7eb4d79926f1d8c719caf7617cc0 /release.py | |
| parent | f1065225a4d5ec1721b91b1da1443fa1ec860e4e (diff) | |
| download | python-setuptools-bitbucket-0a15b36973a6eef7c6c71d79ac76852ad91af58f.tar.gz | |
Include Windows-specific files in tarball even when MANIFEST.in does not include them.
Diffstat (limited to 'release.py')
| -rw-r--r-- | release.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -188,7 +188,9 @@ def upload_to_pypi(): cmd.extend([ 'upload_docs', '-r', PACKAGE_INDEX ]) - subprocess.check_call(cmd) + env = os.environ.copy() + env["SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES"] = "1" + subprocess.check_call(cmd, env=env) def has_sphinx(): try: |
