timewise 0.5.3__tar.gz → 0.5.4__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.
@@ -1,8 +1,9 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: timewise
3
- Version: 0.5.3
3
+ Version: 0.5.4
4
4
  Summary: A small package to download infrared data from the WISE satellite
5
5
  License: MIT
6
+ License-File: LICENSE
6
7
  Author: Jannis Necker
7
8
  Author-email: jannis.necker@gmail.com
8
9
  Requires-Python: >=3.9,<3.12
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [project]
6
6
  name = "timewise"
7
- version = "0.5.3"
7
+ version = "0.5.4"
8
8
  description = "A small package to download infrared data from the WISE satellite"
9
9
  authors = [
10
10
  { name = "Jannis Necker", email = "jannis.necker@gmail.com" },
@@ -2,4 +2,4 @@ from timewise.wise_data_by_visit import WiseDataByVisit
2
2
  from timewise.wise_bigdata_desy_cluster import WISEDataDESYCluster
3
3
  from timewise.parent_sample_base import ParentSampleBase
4
4
 
5
- __version__ = "0.5.3"
5
+ __version__ = "0.5.4"
@@ -1372,7 +1372,7 @@ class WISEDataBase(abc.ABC):
1372
1372
  if len(fns) == 0:
1373
1373
  raise ValueError(f"No unbinned lightcurves found for chunk {chunk_number}!")
1374
1374
 
1375
- lightcurves = pd.concat([pd.read_csv(fn) for fn in fns])
1375
+ lightcurves = pd.concat([pd.read_csv(fn) for fn in fns]).reset_index()
1376
1376
 
1377
1377
  if clear:
1378
1378
  for fn in fns:
File without changes
File without changes
File without changes
File without changes
File without changes