Changeset a2a1c20 in sasview
- Timestamp:
- Aug 31, 2017 12:25:38 PM (7 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- b39d32d5
- Parents:
- 28b7048
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
build_tools/jenkins_win64_build.bat
r2f6d340 ra2a1c20 1 1 set PYTHON=python.exe 2 2 set EASY_INSTALL=easy_install.exe 3 set PYLINT= 3 set PYLINT=pylint.exe 4 4 set INNO="C:\util\inno\ISCC.exe" 5 5 set GIT_SED=C:\"Program Files"\Git\bin\sed.exe -
installers/setup_exe.py
r28b7048 ra2a1c20 291 291 'matplotlib', 'scipy', 'encodings', 'comtypes', 'h5py', 292 292 'win32com', 'xhtml2pdf', 'bumps', 'sasmodels', 'sas', 293 'pkg_resources',294 293 ] 295 294 packages.extend([ -
src/sas/logger_config.py
r7c105e8 ra2a1c20 5 5 import os 6 6 import os.path 7 8 import pkg_resources9 7 10 8 … … 71 69 # NotImplementedError: resource_filename() only supported for .egg, not .zip 72 70 try: 71 import pkg_resources 73 72 places_to_look_for_conf_file.append( 74 73 pkg_resources.resource_filename(__name__, filename)) 74 except ImportError: 75 pass 75 76 except NotImplementedError: 76 77 pass -
src/sas/sasgui/plottools/config.py
rd7bb526 ra2a1c20 38 38 import pkg_resources 39 39 pkg_resources.require("matplotlib>=" + plot_version) 40 except :40 except ImportError: 41 41 from distutils.version import LooseVersion as Version 42 42 if Version(matplotlib.__version__) < Version(plot_version):
Note: See TracChangeset
for help on using the changeset viewer.