dummyfunction 1.1.1__tar.gz → 1.1.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.
Files changed (21) hide show
  1. {dummyfunction-1.1.1/src/dummyfunction.egg-info → dummyfunction-1.1.3}/PKG-INFO +2 -2
  2. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/docs/v1.1.rst +1 -1
  3. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/pyproject.toml +3 -10
  4. dummyfunction-1.1.3/src/dummyfunction/__init__.py +6 -0
  5. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/src/dummyfunction/tests/test_TestDummyFunction.py +6 -2
  6. {dummyfunction-1.1.1 → dummyfunction-1.1.3/src/dummyfunction.egg-info}/PKG-INFO +2 -2
  7. dummyfunction-1.1.3/src/dummyfunction.egg-info/requires.txt +2 -0
  8. dummyfunction-1.1.1/src/dummyfunction/__init__.py +0 -5
  9. dummyfunction-1.1.1/src/dummyfunction.egg-info/requires.txt +0 -2
  10. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/LICENSE.txt +0 -0
  11. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/MANIFEST.in +0 -0
  12. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/README.rst +0 -0
  13. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/docs/v1.0.rst +0 -0
  14. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/setup.cfg +0 -0
  15. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/src/dummyfunction/__main__.py +0 -0
  16. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/src/dummyfunction/core/__init__.py +0 -0
  17. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/src/dummyfunction/py.typed +0 -0
  18. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/src/dummyfunction/tests/__init__.py +0 -0
  19. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/src/dummyfunction.egg-info/SOURCES.txt +0 -0
  20. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/src/dummyfunction.egg-info/dependency_links.txt +0 -0
  21. {dummyfunction-1.1.1 → dummyfunction-1.1.3}/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.1
3
+ Version: 1.1.3
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.0
23
+ Requires-Dist: preparse<2,>=1.1
24
24
  Dynamic: license-file
25
25
 
26
26
  =============
@@ -16,7 +16,7 @@ Open your terminal and run:
16
16
  Typing
17
17
  ------
18
18
 
19
- The typing conforms (not strictly) to ``mypy``.
19
+ The typing conforms strictly to ``mypy``.
20
20
 
21
21
  .. container:: versionadded
22
22
 
@@ -20,7 +20,7 @@ classifiers = [
20
20
  ]
21
21
  dependencies = [
22
22
  "click>=8.2,<9",
23
- "preparse>=1.0,<2",
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.1"
34
+ version = "1.1.3"
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 = false
48
-
49
- [[tool.mypy.overrides]]
50
- module = [
51
- "preparse",
52
- "preparse.*",
53
- ]
54
- ignore_missing_imports = true
47
+ strict = true
@@ -0,0 +1,6 @@
1
+ from dummyfunction.core import dummyfunction, main
2
+
3
+ __all__ = ["dummyfunction", "main"]
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -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(f"dummyfunction(1, 2, 3, 'test') raised an exception: {e}")
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(f"dummyfunction(a=1, b=2, c='test') raised an exception: {e}")
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.1
3
+ Version: 1.1.3
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.0
23
+ Requires-Dist: preparse<2,>=1.1
24
24
  Dynamic: license-file
25
25
 
26
26
  =============
@@ -0,0 +1,2 @@
1
+ click<9,>=8.2
2
+ preparse<2,>=1.1
@@ -1,5 +0,0 @@
1
- from dummyfunction.core import *
2
- from dummyfunction.tests import *
3
-
4
- if __name__ == "__main__":
5
- main()
@@ -1,2 +0,0 @@
1
- click<9,>=8.2
2
- preparse<2,>=1.0
File without changes
File without changes
File without changes
File without changes