Skip to content

Commit

Permalink
Removed pyside1 dependency from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Sep 12, 2019
1 parent d59336a commit e761bce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -34,11 +34,11 @@
# 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
print("Success importing PySide")
except:
install_requires.append("PySide==1.2.*")
#try:
# import PySide
# print("Success importing PySide")
#except:
# install_requires.append("PySide==1.2.*")

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

0 comments on commit e761bce

Please sign in to comment.