keyrunes-python-sdk 0.3.0__tar.gz → 0.3.1__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.
@@ -5,6 +5,18 @@ Todas as mudanças notáveis neste projeto serão documentadas neste arquivo.
5
5
  O formato é baseado em [Keep a Changelog](https://keepachangelog.com/pt-BR/1.0.0/),
6
6
  e este projeto adere ao [Semantic Versioning](https://semver.org/lang/pt-BR/).
7
7
 
8
+ ## [0.3.1] - 2026-09-04
9
+
10
+ ### Fixed
11
+
12
+ - `mutmut` is no longer a runtime dependency. It was declared in
13
+ `[tool.poetry.dependencies]` instead of the dev group, so installing this SDK
14
+ pulled a mutation-testing tool and its whole tree — `libcst`, `textual`,
15
+ `rich`, `setproctitle`, `pyyaml-ft`, `markdown-it-py`, `mdit-py-plugins`,
16
+ `mdurl`, `linkify-it-py`, `sortedcontainers` — into every consumer, including
17
+ production images. Affected 0.2.0 and 0.3.0; nothing in the library imported
18
+ it, so upgrading only removes packages.
19
+
8
20
  ## [0.3.0] - 2026-09-03
9
21
 
10
22
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: keyrunes-python-sdk
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Python SDK for Keyrunes Authorization System
5
5
  License: AGPL
6
6
  License-File: LICENSE
@@ -24,7 +24,6 @@ Classifier: Topic :: Security
24
24
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
25
  Classifier: Topic :: System :: Systems Administration :: Authentication/Directory
26
26
  Requires-Dist: httpx (>=0.28.1,<0.29.0)
27
- Requires-Dist: mutmut (>=3.7.0,<4.0.0)
28
27
  Requires-Dist: pydantic[email] (>=2.0.0,<3.0.0)
29
28
  Requires-Dist: pyjwt (>=2.9.0,<3.0.0)
30
29
  Project-URL: Documentation, https://github.com/jonatasoli/keyrunes-python-sdk#readme
@@ -1,6 +1,6 @@
1
1
  """Keyrunes SDK - Python client for Keyrunes Authorization System."""
2
2
 
3
- __version__ = "0.3.0"
3
+ __version__ = "0.3.1"
4
4
 
5
5
  from keyrunes_sdk.client import KeyrunesClient
6
6
  from keyrunes_sdk.config import (
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "keyrunes-python-sdk"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = "Python SDK for Keyrunes Authorization System"
5
5
  authors = ["keyrunes <contact@singularjourney.host>"]
6
6
  maintainers = ["jonatasoli <contact@jonatasoli.dev>"]
@@ -35,7 +35,6 @@ python = ">=3.10.1,<4.0"
35
35
  pydantic = {extras = ["email"], version = "^2.0.0"}
36
36
  pyjwt = "^2.9.0"
37
37
  httpx = "^0.28.1"
38
- mutmut = "^3.7.0"
39
38
 
40
39
  [tool.poetry.group.dev.dependencies]
41
40
  pytest = "^7.4.0"
@@ -52,6 +51,7 @@ towncrier = "^25.8.0"
52
51
  pre-commit = "^4.5.1"
53
52
  safety = "^3.7.0"
54
53
  hypothesis = "^6.0"
54
+ mutmut = "^3.7.0"
55
55
 
56
56
  [build-system]
57
57
  requires = ["poetry-core>=1.0.0"]