-
Notifications
You must be signed in to change notification settings - Fork 110
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 #172 from wblumberg/andover
Changed install to include a note about binaries
- Loading branch information
Showing
45 changed files
with
198 additions
and
163 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
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from PySide import QtGui | ||
from qtpy.QtWidgets import * | ||
import sys | ||
|
||
# A short utility to use PySide to detect the screen resolution | ||
# (for use in testing the SHARPpy GUI) | ||
|
||
app = QtGui.QApplication(sys.argv) | ||
app = QApplication(sys.argv) | ||
screen_rect = app.desktop().screenGeometry() | ||
width, height = screen_rect.width(), screen_rect.height() | ||
print("Screen Resolution:", str(width) + 'x' + str(height)) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
name: devel | ||
channels: | ||
- conda-forge/label/testing | ||
- conda-forge | ||
- conda-forge/label/testing | ||
- anaconda | ||
dependencies: | ||
- python=3 | ||
- numpy=1.15.* | ||
- pyside | ||
- pyside2=5.13.* | ||
- sphinx | ||
- pytest | ||
- sphinx-gallery | ||
- qtpy | ||
- sphinx_rtd_theme | ||
#- sphinx-gallery | ||
#Sphinx-Gallery removed because it requires matplotlib/pyqt and conflicts with pyside2's Qt version | ||
- requests | ||
- python-dateutil | ||
- pyinstaller | ||
- setuptools | ||
- pip | ||
- pip: | ||
- sphinx-prompt | ||
- pydocstyle | ||
|
Oops, something went wrong.