Skip to content

Commit

Permalink
Fixed missing .egg_base in source distribution.
Browse files Browse the repository at this point in the history
Resolve #330
Sem-Ver: patch
  • Loading branch information
ssbarnea committed Jan 23, 2017
1 parent 2fa5617 commit 9671acc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ tests/test-reports-*/*
**/*.log
/.python-version
/CHANGELOG
/ChangeLog
/AUTHORS
/tests/build
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ python:
- '3.6'
install:
- pip -q --log dist/pip.log install --upgrade pip setuptools tox-travis py wheel
- python setup.py install bdist_wheel
- python setup.py sdist bdist_wheel install
- pip install ./dist/jira-*.whl
- pip --version
script:
- export PACKAGE_NAME=$(python setup.py --name)
- export PACKAGE_VERSION=$(python setup.py --version)
- python setup.py --version
- tox --installpkg ./dist/jira-*.whl --travis-after
# validates that the build source distribution is installable using the old easy_install
- pip uninstall -y jira && easy_install ./dist/jira-*.tar.gz
after_success:
- coveralls
- bash <(curl -s https://codecov.io/bash)
Expand All @@ -27,15 +29,13 @@ notifications:
email:
- [email protected]
- [email protected]
before_deploy:
- echo "before deploy..."
deploy:
- provider: releases
api_key:
secure: gr9iOcQjdoAyUAim6FWKzJI9MBaJo9XKfGQGu7wdPXUFhg80Rp6GLJsowP+aU94NjXM1UQlVHDAy627WtjBlLH2SvmVEIIr7+UKBopBYuXG5jJ1m3wOZE+4f1Pqe9bqFc1DxgucqE8qF0sC24fIbNM2ToeyYrxrS6RoL2gRrX2I=
file:
- dist/$PACKAGE_NAME-$PACKAGE_VERSION*
- dist/CHANGELOG.md
- ChangeLog
skip_cleanup: true
on:
tags: false
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pbr.config.drivers =
plain = pbr.cfg.driver:Plain

[egg_info]
egg_base = build
egg_base = .

[aliases]
test=pytest
Expand Down

0 comments on commit 9671acc

Please sign in to comment.