diff --git a/packages/cli/src/pywrangler/metadata.py b/packages/cli/src/pywrangler/metadata.py index 181003f..1502d2c 100644 --- a/packages/cli/src/pywrangler/metadata.py +++ b/packages/cli/src/pywrangler/metadata.py @@ -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") ), diff --git a/packages/cli/tests/test_cli.py b/packages/cli/tests/test_cli.py index 1151de4..c87d857 100644 --- a/packages/cli/tests/test_cli.py +++ b/packages/cli/tests/test_cli.py @@ -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)