Skip to content

Commit

Permalink
Fix #3076: Include vendor files into tarball distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jun 12, 2018
1 parent 4df4c1b commit cde8aec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/'`:
Expand Down
5 changes: 2 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================
Expand Down
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit cde8aec

Please sign in to comment.