imsciences 1.0.3__tar.gz → 1.0.5__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.3
3
+ Version: 1.0.5
4
4
  Summary: IMS Data Processing Package
5
5
  Author: IMS
6
6
  Author-email: cam@im-sciences.com
@@ -2712,6 +2712,9 @@ class datapull:
2712
2712
  else:
2713
2713
  new_columns.append(f"{col}_{cdid}")
2714
2714
 
2715
+ # Apply the new column names to the DataFrame
2716
+ weekly_df.columns = new_columns
2717
+
2715
2718
  return weekly_df
2716
2719
  print("No data successfully fetched or processed.")
2717
2720
  return pd.DataFrame()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imsciences
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: IMS Data Processing Package
5
5
  Author: IMS
6
6
  Author-email: cam@im-sciences.com
@@ -15,14 +15,13 @@ def read_md(file_name):
15
15
  except FileNotFoundError:
16
16
  return ""
17
17
 
18
-
19
18
  def get_version():
20
19
  """Get version from __init__.py file."""
21
20
  with Path("imsciences/__init__.py").open("r", encoding="utf-8") as f:
22
21
  for line in f:
23
22
  if line.startswith("__version__"):
24
23
  return line.split("=")[1].strip().strip('"').strip("'")
25
- return "1.0.2" # Start from 1.0.0 instead of 0.0.0
24
+ return "1.0.4" # Start from 1.0.0 instead of 0.0.0
26
25
 
27
26
 
28
27
  def increment_version():
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes