Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions packages/cli/src/pywrangler/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ class PythonCompatVersion(NamedTuple):


PYTHON_COMPAT_VERSIONS = [
PythonCompatVersion(
"3.14", "python_workers_20260610", datetime.strptime("2026-08-25", "%Y-%m-%d")
),
PythonCompatVersion("3.14", "python_workers_20260610", None),
PythonCompatVersion(
"3.13", "python_workers_20250116", datetime.strptime("2025-09-29", "%Y-%m-%d")
),
Expand Down
1 change: 1 addition & 0 deletions packages/cli/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,7 @@ def test_proxy_to_wrangler_handles_subprocess_error(mock_subprocess_run):
}


@pytest.mark.xfail(reason="re-enable when 3.14 gets enable date")
def test_sync_command_finds_pyproject_in_parent_directory(test_dir):
"""Test that the sync command can find pyproject.toml in a parent directory."""
# Create pyproject.toml in the test directory (parent)
Expand Down
Loading