File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ Changelog for pyspread
3
3
4
4
Note: This changelog starts at version 0.2.0
5
5
6
+ 1.0.2
7
+ -----
8
+
9
+ Save function bug fixed
10
+ Accepts now pys files up to v1.0
11
+
12
+
6
13
1.0.1
7
14
-----
8
15
Original file line number Diff line number Diff line change 29
29
30
30
import wx
31
31
32
- VERSION = "1.0.1 "
32
+ VERSION = "1.0.2 "
33
33
34
34
35
35
class DefaultConfig (object ):
Original file line number Diff line number Diff line change @@ -104,9 +104,9 @@ def _get_key(self, *keystrings):
104
104
def _pys_assert_version (self , line ):
105
105
"""Asserts pys file version"""
106
106
107
- if line != "0.1 \n " :
107
+ if float ( line . strip ()) >= 1.0 :
108
108
# 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 (
110
110
version = line .strip ())
111
111
raise ValueError (msg )
112
112
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def run(self):
49
49
50
50
setup (
51
51
name = 'pyspread' ,
52
- version = '1.0.1 ' ,
52
+ version = '1.0.2 ' ,
53
53
description = 'Python spreadsheet' ,
54
54
long_description = 'Pyspread is a non-traditional spreadsheet application'
55
55
' that is based on and written in the programming language Python.' ,
You can’t perform that action at this time.
0 commit comments