From ba8610006f9fe18b29e85bc5d36ee1f21f651d2a Mon Sep 17 00:00:00 2001 From: Mauricio Villegas <5780272+mauvilsa@users.noreply.github.com> Date: Thu, 26 Sep 2024 06:49:43 +0200 Subject: [PATCH] Use jsonnet-sdist for python 3.13 to be allowed to push package to pypi. --- CHANGELOG.rst | 9 +++++++++ pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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",