Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
rdemaria committed Mar 5, 2019
1 parent d3d5299 commit 2489a25
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
# pytimber changelog

## 06/2016 (T. Levens)

### 2.7.0
* Fix PEP8 issues in LHCBSRT


### 06/2016 (T. Levens)

* Now requires cmmnbuild_dep_manager.

## 04/2016 (T. Levens)
### 04/2016 (T. Levens)

* Added functions to get LHC fill information.

## 01/2016 (T. Levens)
### 01/2016 (T. Levens)

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

## 12/2015 (C. Hernalsteens)
### 12/2015 (C. Hernalsteens)

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

## 10/2015 (M. Betz)
### 10/2015 (M. Betz)

Documentation (=examples) in pyTimberExamples.ipynb

Expand Down
2 changes: 1 addition & 1 deletion pytimber/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from .pagestore import PageStore

__version__ = "2.6.2"
__version__ = "2.7.0"

__cmmnbuild_deps__ = [
"accsoft-cals-extr-client",
Expand Down
3 changes: 1 addition & 2 deletions pytimber/dataquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,7 @@ def reload(self,t1=None,t2=None):
t1=parsedate(t1)
t2=parsedate(t2)
self.data=self.source.get(self.names,t1,t2,**self.options)
self.names=self.data.keys()
self.names.sort()
self.names=sorted(self.data.keys())
self.t1=parsedate(t1)
self.t2=parsedate(t2)
return self
Expand Down
1 change: 1 addition & 0 deletions pytimber/pytimber.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
M. Betz <[email protected]>
M. Fitterer <[email protected]>
R. Castellotti <[email protected]>
L. Coyle <[email protected]>
'''

import os
Expand Down

0 comments on commit 2489a25

Please sign in to comment.