Skip to content

Commit ae9d25e

Browse files
committed
Version updated to 1.0.2
1 parent 678749e commit ae9d25e

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

changelog

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ Changelog for pyspread
33

44
Note: This changelog starts at version 0.2.0
55

6+
1.0.2
7+
-----
8+
9+
Save function bug fixed
10+
Accepts now pys files up to v1.0
11+
12+
613
1.0.1
714
-----
815

pyspread/src/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
import wx
3131

32-
VERSION = "1.0.1"
32+
VERSION = "1.0.2"
3333

3434

3535
class DefaultConfig(object):

pyspread/src/interfaces/pys.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ def _get_key(self, *keystrings):
104104
def _pys_assert_version(self, line):
105105
"""Asserts pys file version"""
106106

107-
if line != "0.1\n":
107+
if float(line.strip()) >= 1.0:
108108
# Abort if file version not supported
109-
msg = _("File version {version} unsupported (not 0.1).").format(
109+
msg = _("File version {version} unsupported (>1.0).").format(
110110
version=line.strip())
111111
raise ValueError(msg)
112112

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def run(self):
4949

5050
setup(
5151
name='pyspread',
52-
version='1.0.1',
52+
version='1.0.2',
5353
description='Python spreadsheet',
5454
long_description='Pyspread is a non-traditional spreadsheet application'
5555
' that is based on and written in the programming language Python.',

0 commit comments

Comments
 (0)