-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added badges * Update README.md * bumped version to 0.18.1 * version to 0.18.1 * updating travis file * Updated gitignore to ignore build dir * Added new password secure, made few updates * Update docs/conf.py * Update setup.py
- Loading branch information
Kamil A. Kaczmarek
authored
Apr 11, 2020
1 parent
9aa46cf
commit 262057b
Showing
5 changed files
with
18 additions
and
11 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 |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
VERSION | ||
neptune_contrib.egg-info/ | ||
dist/ | ||
build/ | ||
|
||
# tests | ||
.cache/ | ||
|
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
sudo: false | ||
os: linux | ||
language: python | ||
python: | ||
- '3.5.6' | ||
- '3.5' | ||
- '3.6' | ||
install: | ||
- pip install -q -r test_requirements.txt | ||
- pip install tox-travis pylintfileheader | ||
- pip install -r test_requirements.txt | ||
- pip install tox-travis pylintfileheader | ||
script: | ||
- python -m pylint -j 0 -f parseable neptunecontrib tests | ||
- tox | ||
deploy: | ||
distributions: git_version sdist | ||
provider: pypi | ||
user: neptune-contrib | ||
username: __token__ | ||
password: | ||
secure: 47gkGApBZ8Ceq67 | ||
on: | ||
tags: true | ||
skip_existing: true | ||
secure: OVmgLM5O/eOBknYyarV29MLUUvKzUTWTLaXJVei0uW7aMtQBsz0yJq54IbtZnOf2Pcnzjxfn/3lqcmlMRUBwkm0HVxrFRMko1EgfllK293oHdQKsNdHw20grCIBGmu6jF0DqGZ+Tv/QnQU9MTWt9I2y2s6780DVhVSilhBGXWYgF6/FRerdYXpGrNXf6vtIwsaOSBVkFHeojsvlpwO6fO9S8z7O1vv9xunh4R54cBr+QmRGDiVhLllGsGvcfDvWIJx23CjI2/0HcN8Qfh3H7A84ghKMchykJVpxmHThB1kmHYza3BSOPpOaFFfAxAu28vfbH9ZTreEt0CZWq4RgfzaclEe9tp6gGE1q36oHt+CUEt5zX0IPdM+ENCiApLD4qw+W+rYA5TA9dOzmtamlha+DOaUocj+QLULGAqNH12GDRfHwv9jYJhMSCCHu31JcHPBwl6nav/TOjSeIsXn8oXF4BW1eFIv00lxj/4b2doC7nfbQWK2zIw6AL5OSjGyPot/RvV818kaySceEMAzRd3BiRcPGMCciVYG5oj5eGs5RSVydOGh2xLRLJJEmi7k/JWUN4l/UjD590w1mfzAZ14X3fLRLnwaRh+tLuo6YHndAk2g/yOS9UL9pZNivb9asKEiezvUETGATX2zYUYjnjXM4DsjN9MUfwcQUJnmtO6Is= | ||
on: | ||
tags: true | ||
skip_existing: true |
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
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
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,7 +23,7 @@ def main(): | |
|
||
setup( | ||
name='neptune-contrib', | ||
version='0.18.0', | ||
version='0.18.2', | ||
description='Neptune.ai contributions library', | ||
author='neptune.ai', | ||
support='[email protected]', | ||
|