Skip to content

Commit

Permalink
update script
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Apr 25, 2019
1 parent 27997e2 commit 0384a64
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
name: wheel
command: |
. venv/bin/activate
python setup.py bdist_wheel
python ./setup.py bdist_wheel
mkdir -p test-reports/dist
cp dist/*.whl test-reports/dist
mkdir -p test-reports
Expand Down
2 changes: 1 addition & 1 deletion .local.jenkins.lin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ script:
- { CMD: "$PYINT -u setup.py unittests", NAME: "UT" }

after_script:
- $PYINT -u setup.py bdist_wheel
- $PYINT -u ./setup.py bdist_wheel
- if [ ${VERSION} == "3.7" and ${DIST} != "conda" and ${NAME} == "UT" ] then cp dist/*.whl {{root_path}}/../local_pypi/local_pypi_server fi

documentation:
Expand Down
2 changes: 1 addition & 1 deletion .local.jenkins.win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ before_script:
script:
- { CMD: "python -u setup.py unittests", NAME: "UT" }
after_script:
- python setup.py bdist_wheel
- python .\setup.py bdist_wheel
- if [ ${DIST} != "conda" and ${NAME} == "UT" ] then copy dist\*.whl {{root_path}}\..\..\local_pypi\local_pypi_server fi
documentation:
- if [ ${NAME} == "UT" ] then python -u setup.py build_sphinx fi
Expand Down
3 changes: 3 additions & 0 deletions _doc/sphinxdoc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@

epkg_dictionary.update({
'BLAS': 'http://www.netlib.org/blas/explore-html',
'bootstrap': 'https://en.wikipedia.org/wiki/Bootstrapping_(statistics)',
'cython': 'https://cython.org/',
'decision tree': 'https://en.wikipedia.org/wiki/Decision_tree',
'DOT': 'https://en.wikipedia.org/wiki/DOT_(graph_description_language)',
'GIL': 'https://wiki.python.org/moin/GlobalInterpreterLock',
Expand All @@ -87,6 +89,7 @@
'sklearn': ('http://scikit-learn.org/stable/',
('http://scikit-learn.org/stable/modules/generated/{0}.html', 1),
('http://scikit-learn.org/stable/modules/generated/{0}.{1}.html', 2)),
'statsmodels': 'https://www.statsmodels.org/stable/index.html',
't-SNE': 'https://lvdmaaten.github.io/tsne/',
'torch': 'https://pytorch.org/',
'tqdm': 'https://github.com/tqdm/tqdm',
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test_script:
- "%PYTHON%\\python -u setup.py unittests"

after_test:
- "%PYTHON%\\python -u setup.py bdist_wheel"
- "%PYTHON%\\python -u setup.py .\bdist_wheel"

artifacts:
- path: dist
Expand Down

0 comments on commit 0384a64

Please sign in to comment.