-
-
Notifications
You must be signed in to change notification settings - Fork 877
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed missing .egg_base in source distribution.
Resolve #330 Sem-Ver: patch
- Loading branch information
Showing
3 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,5 +23,6 @@ tests/test-reports-*/* | |
**/*.log | ||
/.python-version | ||
/CHANGELOG | ||
/ChangeLog | ||
/AUTHORS | ||
/tests/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters