-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from NREL/development
Automated testing and deployment along with bug fixes
- Loading branch information
Showing
23 changed files
with
395 additions
and
144 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 |
---|---|---|
@@ -1 +1,5 @@ | ||
rdtools/_version.py export-subst | ||
|
||
*.ipynb diff=jupyternotebook | ||
|
||
*.ipynb merge=jupyternotebook |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
sudo: false | ||
|
||
language: python | ||
|
||
python: | ||
- "2.7" | ||
- "3.6" | ||
|
||
# Test two environments: | ||
# 1) dependencies with pinned versions from requirements.txt | ||
# 2) 'pip install --upgrade --upgrade-strategy=eager .' to install upgraded | ||
# dependencies from PyPi using version ranges defined within setup.py | ||
env: | ||
- REQ_ENV='-r requirements.txt .' | ||
- REQ_ENV='--upgrade --upgrade-strategy=eager .' | ||
|
||
install: | ||
- pip install $REQ_ENV | ||
|
||
script: | ||
- pytest | ||
|
||
deploy: | ||
provider: pypi | ||
user: RdTools | ||
password: | ||
secure: GjzVQdzwnXUx+nJV5R7FdZRiI+6amQAklzS2rj0/i23B2QCh0qnnbIjcatodiglBhrH/i/ccNT6HVvYt21IDxux50VuGCSgvvX1I+QfBtDCV0Wt61j8Ms9C7Xbbdt/jXeI4KXQYDq118GJgWPQDfZPDo0okttwrRYNuYhTPYdJ7qmnn3pKOKwrDcjRNiO8dWv8tcY8bfzp7WEEhWhUqHbWGf3EprbVALuS7DF5BzoxKz6np869dTj/5j7BdCF19vscQnP1p8rM7H7J+0m6SNH9slbTE1Z/wfY+97906+zvHOU3rAC2q6NBKRArSIcWy/RsYQcdmuXpZPw7fk04whMZ3V7zojmtkeggTp7AbKlf7qmwKLkDGfNofztQNojNg171eLFSz3GLlYzraw8wLa1Zq8APjq/gG9TkqQkRZ0n73MuYTtZz2ARQZiuDWPJ8sjyoonp04FXRqTK+zKCaFvSaATEXMj4N9GY1yQawrNCOPodR42sz82aCIp/Yu5bvrP1YuMAHkYttzD0HScMRN/ebHethSdRc2S3x2yyX6r7B76lfcx1tS6vcbSVc6B8gg59cZk+82AlpbF7LxJnmenThfKp3cdiYAUI7oYo8+Bfp6ZI44UH8ODY8d4Lhx00o55ojAb7tiwJSWLio3NSC5LGagCwfJmiQPze1luPiKIqBM= | ||
on: | ||
tags: true | ||
branch: master | ||
distributions: "sdist bdist_wheel" | ||
skip_cleanup: 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
appnope==0.1.0 | ||
backcall==0.1.0 | ||
bleach==2.1.3 | ||
cycler==0.10.0 | ||
decorator==4.3.0 | ||
entrypoints==0.2.3 | ||
html5lib==1.0.1 | ||
ipykernel==4.8.2 | ||
ipython==5.8.0 | ||
ipython-genutils==0.2.0 | ||
ipywidgets==7.3.0 | ||
jedi==0.12.1 | ||
Jinja2==2.10 | ||
jsonschema==2.6.0 | ||
jupyter==1.0.0 | ||
jupyter-client==5.2.3 | ||
jupyter-console==5.2.0 | ||
jupyter-core==4.4.0 | ||
kiwisolver==1.0.1 | ||
MarkupSafe==1.0 | ||
matplotlib==2.2.2 | ||
mistune==0.8.3 | ||
nbconvert==5.3.1 | ||
nbformat==4.4.0 | ||
notebook==5.6.0 | ||
numpy==1.15.2 | ||
pandas==0.23.4 | ||
pandocfilters==1.4.2 | ||
parso==0.3.1 | ||
patsy==0.5.0 | ||
pexpect==4.6.0 | ||
pickleshare==0.7.4 | ||
prometheus-client==0.3.0 | ||
prompt-toolkit==1.0.15 | ||
ptyprocess==0.6.0 | ||
pvlib==0.5.2 | ||
Pygments==2.2.0 | ||
pyparsing==2.2.0 | ||
pyzmq==17.1.0 | ||
qtconsole==4.3.1 | ||
Send2Trash==1.5.0 | ||
simplegeneric==0.8.1 | ||
tables==3.4.4 | ||
terminado==0.8.1 | ||
testpath==0.3.1 | ||
tornado==5.1 | ||
traitlets==4.3.2 | ||
wcwidth==0.1.7 | ||
webencodings==0.5.1 | ||
widgetsnbextension==3.3.0 |
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
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
File renamed without changes.
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
Oops, something went wrong.