Skip to content

Commit 2489a25

Browse files
committed
version bump
1 parent d3d5299 commit 2489a25

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# pytimber changelog
22

3-
## 06/2016 (T. Levens)
3+
4+
### 2.7.0
5+
* Fix PEP8 issues in LHCBSRT
6+
7+
8+
### 06/2016 (T. Levens)
49

510
* Now requires cmmnbuild_dep_manager.
611

7-
## 04/2016 (T. Levens)
12+
### 04/2016 (T. Levens)
813

914
* Added functions to get LHC fill information.
1015

11-
## 01/2016 (T. Levens)
16+
### 01/2016 (T. Levens)
1217

1318
* Updated repository structure
1419
* Added setup.py for setuptools/pip installation
@@ -17,7 +22,7 @@
1722
* By default, if this module is not installed then the bundled .jar file is
1823
used as before.
1924

20-
## 12/2015 (C. Hernalsteens)
25+
### 12/2015 (C. Hernalsteens)
2126

2227
Merged from my own package. The API should be identical, except for the new
2328
functionalities that should be transparent for existing use.
@@ -28,7 +33,7 @@ functionalities that should be transparent for existing use.
2833
* (minor) Support for MATRIXNUMERIC datatype
2934
* (minor) Split some functions into smaller pieces
3035

31-
## 10/2015 (M. Betz)
36+
### 10/2015 (M. Betz)
3237

3338
Documentation (=examples) in pyTimberExamples.ipynb
3439

pytimber/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
from .pagestore import PageStore
1313

14-
__version__ = "2.6.2"
14+
__version__ = "2.7.0"
1515

1616
__cmmnbuild_deps__ = [
1717
"accsoft-cals-extr-client",

pytimber/dataquery.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ def reload(self,t1=None,t2=None):
126126
t1=parsedate(t1)
127127
t2=parsedate(t2)
128128
self.data=self.source.get(self.names,t1,t2,**self.options)
129-
self.names=self.data.keys()
130-
self.names.sort()
129+
self.names=sorted(self.data.keys())
131130
self.t1=parsedate(t1)
132131
self.t2=parsedate(t2)
133132
return self

pytimber/pytimber.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
3131
M. Fitterer <[email protected]>
3232
R. Castellotti <[email protected]>
33+
L. Coyle <[email protected]>
3334
'''
3435

3536
import os

0 commit comments

Comments
 (0)