imsciences 1.0.2__tar.gz → 1.0.3__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.

Potentially problematic release.


This version of imsciences might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imsciences
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: IMS Data Processing Package
5
5
  Author: IMS
6
6
  Author-email: cam@im-sciences.com
@@ -2704,6 +2704,14 @@ class datapull:
2704
2704
  # Consider if 0 is the appropriate fill value for your use case
2705
2705
  # weekly_df = weekly_df.fillna(0)
2706
2706
 
2707
+ # Create new column names, keeping "OBS" unchanged
2708
+ new_columns = []
2709
+ for col in weekly_df.columns:
2710
+ if col == "OBS":
2711
+ new_columns.append(col)
2712
+ else:
2713
+ new_columns.append(f"{col}_{cdid}")
2714
+
2707
2715
  return weekly_df
2708
2716
  print("No data successfully fetched or processed.")
2709
2717
  return pd.DataFrame()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imsciences
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: IMS Data Processing Package
5
5
  Author: IMS
6
6
  Author-email: cam@im-sciences.com
@@ -22,7 +22,7 @@ def get_version():
22
22
  for line in f:
23
23
  if line.startswith("__version__"):
24
24
  return line.split("=")[1].strip().strip('"').strip("'")
25
- return "1.0.1" # Start from 1.0.0 instead of 0.0.0
25
+ return "1.0.2" # Start from 1.0.0 instead of 0.0.0
26
26
 
27
27
 
28
28
  def increment_version():
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes