Skip to content

Commit

Permalink
Disabled PyPI and build binaries only on tagged release
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Nov 9, 2019
1 parent 6278c69 commit 361df21
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ deploy:
on:
repo: sharppy/SHARPpy
tags: true
branch: andover
branch: andover-off
condition: "$BUILD_CONDA = YES"

6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ trigger:
branches:
include:
- andover
# tags:
# include:
# - v*
tags:
include:
- v*
# Setup build strategy (listing the various VMs and configurations we'll use)
strategy:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
include_package_data = True

#install_requires = []
install_requires = ['python-dateutil', 'requests', 'numpy==1.15.*']
install_requires = ['python-dateutil', 'requests', 'numpy==1.15.*', 'qtpy']
# Because pip doesn't recognize it when PySide is installed by conda from conda-forge
# Try to import PySide. If it fails, add the PySide to the install_requires
# Because of this, the conda meta.yaml will require PySide to build SHARPpy
#try:
# import PySide
# import qtpy
# print("Success importing PySide")
#except:
# install_requires.append("PySide==1.2.*")
# install_requires.append("PySide2==5.12.*")

entry_pts = {"console_scripts": ['sharppy = runsharp.full_gui:main'] }
# Create some directory variables to shorten the lines.
Expand Down

0 comments on commit 361df21

Please sign in to comment.