rgwfuncs 0.0.107__tar.gz → 0.0.108__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rgwfuncs
3
- Version: 0.0.107
3
+ Version: 0.0.108
4
4
  Summary: A functional programming paradigm for mathematical modelling and data science
5
5
  Home-page: https://github.com/ryangerardwilson/rgwfuncs
6
6
  Author: Ryan Gerard Wilson
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "rgwfuncs"
7
- version = "0.0.107"
7
+ version = "0.0.108"
8
8
  authors = [
9
9
  { name = "Ryan Gerard Wilson", email = "ryangerardwilson@gmail.com" },
10
10
  ]
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = rgwfuncs
3
- version = 0.0.107
3
+ version = 0.0.108
4
4
  author = Ryan Gerard Wilson
5
5
  author_email = ryangerardwilson@gmail.com
6
6
  description = A functional programming paradigm for mathematical modelling and data science
@@ -254,7 +254,7 @@ def sub_heading(text: str, typing_speed: float = 0.002) -> None:
254
254
  # Format sub-heading
255
255
  prefix = f"[{_CURRENT_HEADING_NUMBER}.{current_sub}] "
256
256
  max_text_length = 50 - len(prefix)
257
- formatted_text = text.lower()[:max_text_length]
257
+ formatted_text = text[:max_text_length] # Removed .lower()
258
258
  sub_heading = f"{prefix}{formatted_text}"
259
259
 
260
260
  # Get timestamp
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rgwfuncs
3
- Version: 0.0.107
3
+ Version: 0.0.108
4
4
  Summary: A functional programming paradigm for mathematical modelling and data science
5
5
  Home-page: https://github.com/ryangerardwilson/rgwfuncs
6
6
  Author: Ryan Gerard Wilson
File without changes
File without changes