dummyfunction 1.1.0__tar.gz → 1.1.2__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.
- {dummyfunction-1.1.0/src/dummyfunction.egg-info → dummyfunction-1.1.2}/PKG-INFO +2 -2
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/docs/v1.0.rst +0 -5
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/docs/v1.1.rst +1 -1
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/pyproject.toml +3 -10
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction/tests/test_TestDummyFunction.py +6 -2
- {dummyfunction-1.1.0 → dummyfunction-1.1.2/src/dummyfunction.egg-info}/PKG-INFO +2 -2
- dummyfunction-1.1.2/src/dummyfunction.egg-info/requires.txt +2 -0
- dummyfunction-1.1.0/src/dummyfunction.egg-info/requires.txt +0 -2
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/LICENSE.txt +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/MANIFEST.in +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/README.rst +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/setup.cfg +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction/__init__.py +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction/__main__.py +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction/core/__init__.py +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction/py.typed +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction/tests/__init__.py +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction.egg-info/SOURCES.txt +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction.egg-info/dependency_links.txt +0 -0
- {dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dummyfunction
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: This project provides the dummy function.
|
|
5
5
|
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -20,7 +20,7 @@ Requires-Python: >=3.11
|
|
|
20
20
|
Description-Content-Type: text/x-rst
|
|
21
21
|
License-File: LICENSE.txt
|
|
22
22
|
Requires-Dist: click<9,>=8.2
|
|
23
|
-
Requires-Dist: preparse<2,>=1.
|
|
23
|
+
Requires-Dist: preparse<2,>=1.1
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
=============
|
|
@@ -21,11 +21,6 @@ Features
|
|
|
21
21
|
|
|
22
22
|
This function does nothing.
|
|
23
23
|
|
|
24
|
-
``dummyfunction.main``
|
|
25
|
-
~~~~~~~~~~~~~~~~~~~~~~
|
|
26
|
-
|
|
27
|
-
This click command implements the CLI.
|
|
28
|
-
|
|
29
24
|
``dummyfunction.tests.test() -> unittest.TextTestResult``
|
|
30
25
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
31
26
|
|
|
@@ -20,7 +20,7 @@ classifiers = [
|
|
|
20
20
|
]
|
|
21
21
|
dependencies = [
|
|
22
22
|
"click>=8.2,<9",
|
|
23
|
-
"preparse>=1.
|
|
23
|
+
"preparse>=1.1,<2",
|
|
24
24
|
]
|
|
25
25
|
description = "This project provides the dummy function."
|
|
26
26
|
keywords = []
|
|
@@ -31,7 +31,7 @@ license-files = [
|
|
|
31
31
|
name = "dummyfunction"
|
|
32
32
|
readme = "README.rst"
|
|
33
33
|
requires-python = ">=3.11"
|
|
34
|
-
version = "1.1.
|
|
34
|
+
version = "1.1.2"
|
|
35
35
|
|
|
36
36
|
[project.urls]
|
|
37
37
|
Download = "https://pypi.org/project/dummyfunction/#files"
|
|
@@ -44,11 +44,4 @@ files = [
|
|
|
44
44
|
".",
|
|
45
45
|
]
|
|
46
46
|
python_version = "3.11"
|
|
47
|
-
strict =
|
|
48
|
-
|
|
49
|
-
[[tool.mypy.overrides]]
|
|
50
|
-
module = [
|
|
51
|
-
"preparse",
|
|
52
|
-
"preparse.*",
|
|
53
|
-
]
|
|
54
|
-
ignore_missing_imports = true
|
|
47
|
+
strict = true
|
{dummyfunction-1.1.0 → dummyfunction-1.1.2}/src/dummyfunction/tests/test_TestDummyFunction.py
RENAMED
|
@@ -19,14 +19,18 @@ class TestDummyFunction(unittest.TestCase):
|
|
|
19
19
|
try:
|
|
20
20
|
dummyfunction(1, 2, 3, "test")
|
|
21
21
|
except Exception as e:
|
|
22
|
-
self.fail(
|
|
22
|
+
self.fail(
|
|
23
|
+
f"dummyfunction(1, 2, 3, 'test') raised an exception: {e}"
|
|
24
|
+
)
|
|
23
25
|
|
|
24
26
|
def test_dummyfunction_with_kwargs(self: Self) -> None:
|
|
25
27
|
"Test dummyfunction with keyword arguments."
|
|
26
28
|
try:
|
|
27
29
|
dummyfunction(a=1, b=2, c="test")
|
|
28
30
|
except Exception as e:
|
|
29
|
-
self.fail(
|
|
31
|
+
self.fail(
|
|
32
|
+
f"dummyfunction(a=1, b=2, c='test') raised an exception: {e}"
|
|
33
|
+
)
|
|
30
34
|
|
|
31
35
|
def test_dummyfunction_with_args_and_kwargs(self: Self) -> None:
|
|
32
36
|
"Test dummyfunction with both positional and keyword arguments."
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dummyfunction
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: This project provides the dummy function.
|
|
5
5
|
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -20,7 +20,7 @@ Requires-Python: >=3.11
|
|
|
20
20
|
Description-Content-Type: text/x-rst
|
|
21
21
|
License-File: LICENSE.txt
|
|
22
22
|
Requires-Dist: click<9,>=8.2
|
|
23
|
-
Requires-Dist: preparse<2,>=1.
|
|
23
|
+
Requires-Dist: preparse<2,>=1.1
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
=============
|
|
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
|
|
File without changes
|
|
File without changes
|