workers-py 1.7.1__tar.gz → 1.7.2__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.
- {workers_py-1.7.1 → workers_py-1.7.2}/CHANGELOG.md +7 -8
- {workers_py-1.7.1 → workers_py-1.7.2}/PKG-INFO +1 -1
- {workers_py-1.7.1 → workers_py-1.7.2}/pyproject.toml +1 -1
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/sync.py +1 -1
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/utils.py +1 -1
- {workers_py-1.7.1 → workers_py-1.7.2}/uv.lock +1 -1
- {workers_py-1.7.1 → workers_py-1.7.2}/.gitattributes +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/.github/workflows/commitlint.yml +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/.github/workflows/lint.yml +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/.github/workflows/release.yml +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/.github/workflows/tests.yml +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/.gitignore +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/.pre-commit-config.yaml +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/CLAUDE.md +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/CONTRIBUTING.md +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/README.md +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/__init__.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/__main__.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/cli.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/metadata.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/py.typed +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/src/pywrangler/types.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/tests/test_cli.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/tests/test_py_version_detect.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/tests/test_types.py +0 -0
- {workers_py-1.7.1 → workers_py-1.7.2}/workers.py +0 -0
|
@@ -2,20 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- version list -->
|
|
4
4
|
|
|
5
|
-
## v1.7.
|
|
5
|
+
## v1.7.2 (2026-02-05)
|
|
6
6
|
|
|
7
7
|
### Bug Fixes
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
[`
|
|
9
|
+
- Always pass string for subprocess env ([#65](https://github.com/cloudflare/workers-py/pull/65),
|
|
10
|
+
[`7a62ed6`](https://github.com/cloudflare/workers-py/commit/7a62ed6cd9518b404c8b6813f609e23b0d0c5621))
|
|
11
11
|
|
|
12
|
-
- Better windows platform support ([#62](https://github.com/cloudflare/workers-py/pull/62),
|
|
13
|
-
[`53ce7be`](https://github.com/cloudflare/workers-py/commit/53ce7be9385f2aa07d8c43d5d3296d6328aafca7))
|
|
14
12
|
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
## v1.7.1 (2026-02-03)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
17
16
|
|
|
18
|
-
-
|
|
17
|
+
- Better windows platform support ([#62](https://github.com/cloudflare/workers-py/pull/62),
|
|
19
18
|
[`53ce7be`](https://github.com/cloudflare/workers-py/commit/53ce7be9385f2aa07d8c43d5d3296d6328aafca7))
|
|
20
19
|
|
|
21
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: workers-py
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.2
|
|
4
4
|
Summary: A set of libraries and tools for Python Workers
|
|
5
5
|
Project-URL: Homepage, https://github.com/cloudflare/workers-py
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/cloudflare/workers-py/issues
|
|
@@ -242,7 +242,7 @@ def _install_requirements_to_vendor(requirements: list[str]) -> None:
|
|
|
242
242
|
def _log_installed_packages(venv_path: Path) -> None:
|
|
243
243
|
result = run_command(
|
|
244
244
|
["uv", "pip", "list", "--format=freeze"],
|
|
245
|
-
env=os.environ | {"VIRTUAL_ENV": venv_path},
|
|
245
|
+
env=os.environ | {"VIRTUAL_ENV": str(venv_path)},
|
|
246
246
|
capture_output=True,
|
|
247
247
|
check=False,
|
|
248
248
|
)
|
|
@@ -122,7 +122,7 @@ def write_success(msg: str) -> None:
|
|
|
122
122
|
def run_command(
|
|
123
123
|
command: list[str],
|
|
124
124
|
cwd: Path | None = None,
|
|
125
|
-
env: Mapping[str, str
|
|
125
|
+
env: Mapping[str, str] | None = None,
|
|
126
126
|
check: bool = True,
|
|
127
127
|
capture_output: bool = False,
|
|
128
128
|
) -> subprocess.CompletedProcess[str]:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|