opa-python-client 2.0.3__tar.gz → 2.0.4__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.
@@ -1,26 +1,28 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: opa-python-client
3
- Version: 2.0.3
3
+ Version: 2.0.4
4
4
  Summary: Client for connection to the OPA service
5
5
  License: MIT
6
+ License-File: LICENCE.md
6
7
  Author: Tural Muradov
7
8
  Author-email: tural.muradoov@gmail.com
8
- Requires-Python: >=3.9,<4.0
9
+ Requires-Python: >=3.10,<4.0
9
10
  Classifier: Intended Audience :: Developers
10
11
  Classifier: License :: OSI Approved :: MIT License
11
12
  Classifier: Operating System :: OS Independent
12
13
  Classifier: Programming Language :: Python
13
14
  Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
18
  Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
19
20
  Classifier: Programming Language :: Python :: 3 :: Only
20
- Requires-Dist: aiofiles (>=24.1.0,<25.0.0)
21
- Requires-Dist: aiohttp[speedups] (>=3.10.9,<4.0.0)
22
- Requires-Dist: requests (>=2.32.3,<3.0.0)
23
- Requires-Dist: urllib3 (>=2.5.0,<3.0.0)
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Requires-Dist: aiofiles (>=25.1.0,<26.0.0)
23
+ Requires-Dist: aiohttp[speedups] (>=3.13.3,<4.0.0)
24
+ Requires-Dist: requests (>=2.32.5,<3.0.0)
25
+ Requires-Dist: urllib3 (>=2.6.3,<3.0.0)
24
26
  Project-URL: Homepage, https://github.com/Turall/OPA-python-client
25
27
  Project-URL: Repository, https://github.com/Turall/OPA-python-client
26
28
  Description-Content-Type: text/markdown
@@ -6,9 +6,7 @@ import requests
6
6
  from opa_client import create_opa_client
7
7
  from opa_client.errors import (
8
8
  ConnectionsError,
9
- DeleteDataError,
10
9
  DeletePolicyError,
11
- PolicyNotFoundError,
12
10
  RegoParseError,
13
11
  )
14
12
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "opa-python-client"
3
- version = "2.0.3"
3
+ version = "2.0.4"
4
4
  description = "Client for connection to the OPA service"
5
5
  authors = ["Tural Muradov <tural.muradoov@gmail.com>"]
6
6
  license = "MIT"
@@ -21,11 +21,11 @@ packages = [
21
21
  ]
22
22
 
23
23
  [tool.poetry.dependencies]
24
- python = "^3.9"
25
- requests = "^2.32.3"
26
- aiohttp = {extras = ["speedups"], version = "^3.10.9"}
27
- aiofiles = "^24.1.0"
28
- urllib3 = "^2.5.0"
24
+ python = "^3.10"
25
+ aiohttp = {extras = ["speedups"], version = "^3.13.3"}
26
+ requests = "^2.32.5"
27
+ urllib3 = "^2.6.3"
28
+ aiofiles = "^25.1.0"
29
29
 
30
30
  [tool.poetry.group.dev.dependencies]
31
31
  pytest = "^8.3.3"