Skip to content
This repository was archived by the owner on Sep 4, 2021. It is now read-only.

Commit 752ee72

Browse files
committed
Update version numbers
Forgot to commit before last release
1 parent 955b3f5 commit 752ee72

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VER=4.0.2
1+
VER=4.0.3
22

33
# run standard verify routines
44
test:

circuitscape-x64.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
;ENTER VERSION INFO HERE
2-
#define Version "4.0.2"
2+
#define Version "4.0.3"
33

44
;TODO: Would be great to get the following to work, but version info isn't in exe file:
55
;#define AppVersion GetFileVersion("dist\csgui.exe")

circuitscape.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
;ENTER VERSION INFO HERE
2-
#define Version "4.0.2"
2+
#define Version "4.0.3"
33

44
[Setup]
55
; NOTE: The value of AppId uniquely identifies this application.

circuitscape/compute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '4.0.2'
1+
__version__ = '4.0.3'
22
__author__ = 'Brad McRae, Viral B. Shah, and Tanmay Mohapatra'
33
__email__ = '[email protected]'
44

circuitscape/compute_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def __init__(self, filename):
221221
mode, point_ids, mat = CSIO.read_included_pairs(filename)
222222
self.is_include = (mode == "include")
223223
self.point_ids = point_ids
224-
self.mat = mat.tolil()
224+
self.mat = mat.tolil() #FIXME- causing crashes when point IDs are large (8 digits)
225225
self.max_id = int(np.max(point_ids)) + 1
226226

227227
def is_included_pair(self, point_id1, point_id2):

0 commit comments

Comments
 (0)