diff --git a/.appveyor.yml b/.appveyor.yml index 904e2cc0e9e..f82edc221e0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -28,7 +28,7 @@ artifacts: deploy_script: - ps: >- if($env:appveyor_repo_tag -eq 'True') { - Invoke-Expression "$env:PYTHON\\python.exe -m twine upload dist/* --username andrew.svetlov --password $env:PYPI_PASSWD" + Invoke-Expression "$env:PYTHON\\python.exe -m twine upload dist/* --username aio-libs-bot --password $env:PYPI_PASSWD" } #notifications: diff --git a/.travis.yml b/.travis.yml index 24a0974e597..7b9e5cd4ccb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,6 +76,7 @@ _helpers: # `skip_cleanup: true` is required to preserve binary wheels, built # inside of manylinux1 docker container during `script` step above. skip_cleanup: true + skip_existing: true user: aio-libs-bot password: # Encrypted with `travis encrypt -r aio-libs/aiohttp --api-endpoint 'https://api.travis-ci.com/'`: diff --git a/CHANGES.rst b/CHANGES.rst index 169ea31aa7a..c2550d23d0f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,12 +17,11 @@ Changelog 3.3.2 (2018-06-12) ================== -Bugfixes --------- - - Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. (#3070) +- Provide vendor source files in tarball (#3076) + 3.3.1 (2018-06-05) ================== diff --git a/MANIFEST.in b/MANIFEST.in index 9f7cc718713..a24028ff6ce 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,8 +7,13 @@ graft aiohttp graft docs graft examples graft tests +recursive-include vendor * global-exclude *.pyc global-exclude *.pyd global-exclude *.so +global-exclude *.lib +global-exclude *.dll +global-exclude *.a +global-exclude *.obj exclude aiohttp/*.html prune docs/_build