LabTools3 1.1.3.21__tar.gz → 1.1.3.22__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -333,11 +333,11 @@ class dfile:
333
333
  # now try to convert according to the format
334
334
  try:
335
335
  if fc == 'f':
336
- f.append(float(k)) # create a float
336
+ f.append(float(eval(k))) # create a float
337
337
  if fc == 'i':
338
- f.append(int(k)) # create an integer
338
+ f.append(int(eval(k))) # create an integer
339
339
  if fc == 's':
340
- f.append(k) # leave as string
340
+ f.append(eval(k)) # leave as string
341
341
  except:
342
342
  f.append(k) # if not possible leave it,
343
343
  # but make a comment
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: LabTools3
3
- Version: 1.1.3.21
3
+ Version: 1.1.3.22
4
4
  Summary: Python 3 Package of modules for typical analysis tasks analyzing physics data
5
5
  Home-page: http://wanda.fiu.edu/LabTools3
6
6
  Author: Werner Boeglin
@@ -75,3 +75,5 @@ Version 1.1.3.19: Fixed but when using using the fill function in 1d histograms
75
75
  Version 1.1.3.20: Added show_header to datafile and the full_precision key word to write_csv.
76
76
 
77
77
  Version 1.1.3.21: Fixed bug in histo2d operations
78
+
79
+ Version 1.1.3.22: Updated datafile to be able to read new nunmpy output of numbers with types
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: LabTools3
3
- Version: 1.1.3.21
3
+ Version: 1.1.3.22
4
4
  Summary: Python 3 Package of modules for typical analysis tasks analyzing physics data
5
5
  Home-page: http://wanda.fiu.edu/LabTools3
6
6
  Author: Werner Boeglin
@@ -75,3 +75,5 @@ Version 1.1.3.19: Fixed but when using using the fill function in 1d histograms
75
75
  Version 1.1.3.20: Added show_header to datafile and the full_precision key word to write_csv.
76
76
 
77
77
  Version 1.1.3.21: Fixed bug in histo2d operations
78
+
79
+ Version 1.1.3.22: Updated datafile to be able to read new nunmpy output of numbers with types
@@ -49,4 +49,6 @@ Version 1.1.3.19: Fixed but when using using the fill function in 1d histograms
49
49
 
50
50
  Version 1.1.3.20: Added show_header to datafile and the full_precision key word to write_csv.
51
51
 
52
- Version 1.1.3.21: Fixed bug in histo2d operations
52
+ Version 1.1.3.21: Fixed bug in histo2d operations
53
+
54
+ Version 1.1.3.22: Updated datafile to be able to read new nunmpy output of numbers with types
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setup(
7
7
  name = "LabTools3",
8
- version = "1.1.3.21",
8
+ version = "1.1.3.22",
9
9
  packages = find_packages(),
10
10
  # add additional files
11
11
  package_data = {'':['*.bat','*.command']},
File without changes
File without changes
File without changes
File without changes