tha-wright-stuff 0.1.7__tar.gz → 0.1.8__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.
@@ -88,10 +88,6 @@ jobs:
88
88
  print(f"pyproject.toml updated -- version {old_ver} -> {new_ver}")
89
89
  PYEOF
90
90
 
91
- - name: Update lockfile
92
- if: steps.check.outputs.changed == 'true'
93
- run: uv lock
94
-
95
91
  - name: Commit and open PR
96
92
  if: steps.check.outputs.changed == 'true'
97
93
  run: |
@@ -99,7 +95,7 @@ jobs:
99
95
  git config user.email "github-actions[bot]@users.noreply.github.com"
100
96
  BRANCH="chore/bump-dep-floors-$(date +%Y%m%d)"
101
97
  git checkout -b "$BRANCH"
102
- git add pyproject.toml uv.lock
98
+ git add pyproject.toml
103
99
  git commit -m "chore: bump tha-* dependency floors to v${{ steps.check.outputs.new_version }}"
104
100
  git push origin "$BRANCH"
105
101
  gh pr create \
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tha-wright-stuff
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: A Tabular Helper meta-package that bundles the full tha-* library family in a single install.
5
5
  Project-URL: Homepage, https://github.com/tha-guy-nate/tha-wright-stuff
6
6
  Project-URL: Issues, https://github.com/tha-guy-nate/tha-wright-stuff/issues
@@ -87,7 +87,7 @@ Every public class, function, and error type from all eight libraries is availab
87
87
 
88
88
  - Python 3.10+
89
89
 
90
- All eight libraries are installed automatically as dependencies. Optional extras from individual libraries (e.g. `tha-csv-runner[excel]`, `tha-req-runner[httpx]`) are not pulled in by default — install them separately if needed.
90
+ All eight libraries are installed automatically as dependencies. Use `pip install tha-wright-stuff[all]` to also pull in optional extras (currently `tha-req-runner[httpx]`).
91
91
 
92
92
  ---
93
93
 
@@ -51,7 +51,7 @@ Every public class, function, and error type from all eight libraries is availab
51
51
 
52
52
  - Python 3.10+
53
53
 
54
- All eight libraries are installed automatically as dependencies. Optional extras from individual libraries (e.g. `tha-csv-runner[excel]`, `tha-req-runner[httpx]`) are not pulled in by default — install them separately if needed.
54
+ All eight libraries are installed automatically as dependencies. Use `pip install tha-wright-stuff[all]` to also pull in optional extras (currently `tha-req-runner[httpx]`).
55
55
 
56
56
  ---
57
57
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "tha-wright-stuff"
7
- version = "0.1.7"
7
+ version = "0.1.8"
8
8
  description = "A Tabular Helper meta-package that bundles the full tha-* library family in a single install."
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -1,5 +1,9 @@
1
1
  """tha-wright-stuff: the full tha-* Tabular Helper library family in one install."""
2
2
 
3
+ from importlib.metadata import version
4
+
5
+ __version__ = version("tha-wright-stuff")
6
+
3
7
  from tha_aws_runner import (
4
8
  AWSBase,
5
9
  AWSClients,
@@ -39,7 +43,6 @@ from tha_utils_helper import (
39
43
  UtilsError,
40
44
  )
41
45
 
42
- __version__ = "0.1.4"
43
46
  __all__ = [
44
47
  "AWSBase",
45
48
  "AWSClients",