Skip to content

Commit ae01919

Browse files
author
stephanie
committed
Merge branch 'Beta_1.2.7' of https://github.com/odm2/ODMToolsPython into Beta_1.2.7
2 parents bfb1841 + 974d2d3 commit ae01919

File tree

5 files changed

+27
-34
lines changed

5 files changed

+27
-34
lines changed

make.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,11 @@ def run_pyinstaller(console=False):
154154
'--distpath=%s ' % WIN_DIR +
155155
'--workpath=%s ' % WORK_DIR +
156156
'--specpath=%s ' % WIN_DIR +
157-
'--upx-dir=%s ' % BASE_DIR +
157+
#'--upx-dir=%s ' % BASE_DIR +
158+
'--noupx '
158159
'--icon=%s ' % WIN_ICON_FILE +
159160
'--version-file=%s ' % VERSION_FILE +
161+
'--onedir '
160162
# '--onefile ' +
161163
'--exclude=
162164
'--noconfirm ' + APP_FILE)
@@ -167,8 +169,10 @@ def run_pyinstaller(console=False):
167169
'--distpath=%s ' % WIN_DIR +
168170
'--workpath=%s ' % WORK_DIR +
169171
'--specpath=%s ' % WIN_DIR +
170-
'--upx-dir=%s ' % BASE_DIR +
172+
#'--upx-dir=%s ' % BASE_DIR +
173+
'--noupx '
171174
'--icon=%s ' % WIN_ICON_FILE +
175+
'--onedir '
172176
# '--onefile ' +
173177
'--version-file=%s ' % VERSION_FILE +
174178
'--noconsole '

setup/Windows/odmtools_console.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define MyAppPublisher "ODM2"
99
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
1010
#define MyAppExeName "ODMTools.exe"
11-
#define MyAppDir "D:\DEV\ODMToolsPython"
11+
#define MyAppDir "D:\DEV\ODMTools"
1212

1313
[Setup]
1414
; NOTE: The value of AppId uniquely identifies this application.

setup/Windows/odmtools_no_console.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define MyAppPublisher "ODM2"
1111
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
1212
#define MyAppExeName "ODMTools.exe"
13-
#define MyAppDir "D:\DEV\ODMToolsPython"
13+
#define MyAppDir "D:\DEV\ODMTools"
1414

1515
[Setup]
1616
; NOTE: The value of AppId uniquely identifies this application.

setup/Windows/odmtools_setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#define MyAppPublisher "ODM2"
77
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
88
#define MyAppExeName "ODMTools.exe"
9-
#define MyAppDir "D:\DEV\ODMToolsPython"
9+
#define MyAppDir "D:\DEV\ODMTools"
1010

1111
[Setup]
1212
; NOTE: The value of AppId uniquely identifies this application.

toolsenvironment.yml

Lines changed: 18 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,20 @@
11
name: odmtools
2+
channels:
3+
- ioos
24
dependencies:
3-
- dateutil=2.4.1=py27_0
4-
- freetype=2.4.10=1
5-
- libpng=1.5.13=1
6-
- matplotlib=1.4.3=np19py27_0
7-
- numpy=1.9.2=py27_0
8-
- openssl=1.0.1k=1
9-
- pandas=0.15.2=np19py27_0
10-
- pip=7.1.2=py27_0
11-
- psycopg2=2.6=py27_0
12-
- pymysql=0.6.6=py27_0
13-
- pyparsing=2.0.3=py27_0
14-
- python=2.7.10=1
15-
- python.app=1.2=py27_3
16-
- pytz=2014.9=py27_0
17-
- readline=6.2=2
18-
- scipy=0.15.1=np19py27_0
19-
- setuptools=18.4=py27_0
20-
- six=1.9.0=py27_0
21-
- sqlalchemy=0.9.9=py27_0
22-
- sqlite=3.8.4.1=1
23-
- tk=8.5.18=0
24-
- wheel=0.26.0=py27_1
25-
- wxpython=3.0=py27_0
26-
- zlib=1.2.8=0
27-
- pip:
28-
- geoalchemy2==0.2.5
29-
- pyodbc==3.0.7
30-
- python-dateutil==2.4.1
31-
- wxpython-common==3.0.0.0
5+
- python=2.7
6+
- matplotlib
7+
- numpy
8+
- pandas
9+
- pip
10+
- psycopg2
11+
- pymysql
12+
- pyparsing
13+
- scipy
14+
- sqlalchemy
15+
- sqlite
16+
- wheel
17+
- wxpython
18+
- pip:
19+
- geoalchemy
20+
- pyodbc

0 commit comments

Comments
 (0)