diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c26b2322..16cd418c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -12,6 +12,15 @@ The semantic versioning only considers the public API as described in paths are considered internals and can change in minor and patch releases. +v4.33.1 (2024-09-??) +-------------------- + +Fixed +^^^^^ +- Use ``jsonnet-sdist`` for python 3.13 to be allowed to push package to pypi + (`#??? `__). + + v4.33.0 (2024-09-25) -------------------- diff --git a/pyproject.toml b/pyproject.toml index dbd97670..e22ae1c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ jsonschema = [ jsonnet = [ "jsonnet>=0.13.0; os_name == 'posix' and python_version < '3.13'", "jsonnet-binary>=0.17.0; os_name != 'posix' and python_version < '3.13'", - "jsonnet @ https://github.com/google/jsonnet/zipball/master ; python_version == '3.13'", + "jsonnet-sdist==2024.6.23; python_version == '3.13'", ] urls = [ "requests>=2.18.4",