bugdantic 0.2.2__tar.gz → 0.2.3__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.
- {bugdantic-0.2.2 → bugdantic-0.2.3}/PKG-INFO +7 -6
- {bugdantic-0.2.2 → bugdantic-0.2.3}/bugdantic.egg-info/PKG-INFO +7 -6
- bugdantic-0.2.3/bugdantic.egg-info/requires.txt +8 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/pyproject.toml +7 -6
- bugdantic-0.2.2/bugdantic.egg-info/requires.txt +0 -7
- {bugdantic-0.2.2 → bugdantic-0.2.3}/LICENSE +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/README.md +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/bugdantic/__init__.py +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/bugdantic/bugzilla.py +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/bugdantic/py.typed +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/bugdantic.egg-info/SOURCES.txt +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/bugdantic.egg-info/dependency_links.txt +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/bugdantic.egg-info/top_level.txt +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/setup.cfg +0 -0
- {bugdantic-0.2.2 → bugdantic-0.2.3}/test/test_bugzilla.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bugdantic
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Bugzilla client based on pydantic
|
|
5
5
|
Author-email: James Graham <james@hoppipolla.co.uk>
|
|
6
6
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
|
@@ -8,10 +8,11 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
8
8
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
9
9
|
Requires-Python: >=3.11
|
|
10
10
|
License-File: LICENSE
|
|
11
|
-
Requires-Dist: httpx[http2]
|
|
12
|
-
Requires-Dist: pydantic
|
|
11
|
+
Requires-Dist: httpx[http2]>=0.28.1
|
|
12
|
+
Requires-Dist: pydantic>=2.11.3
|
|
13
13
|
Provides-Extra: test
|
|
14
|
-
Requires-Dist: mypy==1.
|
|
15
|
-
Requires-Dist: ruff==0.
|
|
16
|
-
Requires-Dist: pytest==8.3.
|
|
14
|
+
Requires-Dist: mypy==1.15.0; extra == "test"
|
|
15
|
+
Requires-Dist: ruff==0.11.7; extra == "test"
|
|
16
|
+
Requires-Dist: pytest==8.3.5; extra == "test"
|
|
17
|
+
Requires-Dist: pytest-ruff==0.4.1; extra == "test"
|
|
17
18
|
Dynamic: license-file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bugdantic
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Bugzilla client based on pydantic
|
|
5
5
|
Author-email: James Graham <james@hoppipolla.co.uk>
|
|
6
6
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
|
@@ -8,10 +8,11 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
8
8
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
9
9
|
Requires-Python: >=3.11
|
|
10
10
|
License-File: LICENSE
|
|
11
|
-
Requires-Dist: httpx[http2]
|
|
12
|
-
Requires-Dist: pydantic
|
|
11
|
+
Requires-Dist: httpx[http2]>=0.28.1
|
|
12
|
+
Requires-Dist: pydantic>=2.11.3
|
|
13
13
|
Provides-Extra: test
|
|
14
|
-
Requires-Dist: mypy==1.
|
|
15
|
-
Requires-Dist: ruff==0.
|
|
16
|
-
Requires-Dist: pytest==8.3.
|
|
14
|
+
Requires-Dist: mypy==1.15.0; extra == "test"
|
|
15
|
+
Requires-Dist: ruff==0.11.7; extra == "test"
|
|
16
|
+
Requires-Dist: pytest==8.3.5; extra == "test"
|
|
17
|
+
Requires-Dist: pytest-ruff==0.4.1; extra == "test"
|
|
17
18
|
Dynamic: license-file
|
|
@@ -5,7 +5,7 @@ authors = [
|
|
|
5
5
|
{name = "James Graham", email = "james@hoppipolla.co.uk"}
|
|
6
6
|
]
|
|
7
7
|
|
|
8
|
-
version = "0.2.
|
|
8
|
+
version = "0.2.3"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
classifiers = [
|
|
11
11
|
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
|
@@ -14,13 +14,14 @@ classifiers = [
|
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
dependencies = [
|
|
17
|
-
"httpx[http2]
|
|
18
|
-
"pydantic
|
|
17
|
+
"httpx[http2]>=0.28.1",
|
|
18
|
+
"pydantic>=2.11.3",
|
|
19
19
|
]
|
|
20
20
|
|
|
21
21
|
[project.optional-dependencies]
|
|
22
22
|
test = [
|
|
23
|
-
"mypy==1.
|
|
24
|
-
"ruff==0.
|
|
25
|
-
"pytest==8.3.
|
|
23
|
+
"mypy==1.15.0",
|
|
24
|
+
"ruff==0.11.7",
|
|
25
|
+
"pytest==8.3.5",
|
|
26
|
+
"pytest-ruff==0.4.1",
|
|
26
27
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|