datarepr 1.2.2__tar.gz → 1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: datarepr
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: This project allows for common sense data representation.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
@@ -28,7 +28,7 @@ license-files = [
28
28
  name = "datarepr"
29
29
  readme = "README.rst"
30
30
  requires-python = ">=3.11"
31
- version = "1.2.2"
31
+ version = "1.2.3"
32
32
 
33
33
  [project.urls]
34
34
  Download = "https://pypi.org/project/datarepr/#files"
@@ -0,0 +1,9 @@
1
+ import unittest
2
+
3
+ __all__ = ["test"]
4
+
5
+
6
+ def test() -> unittest.TextTestResult:
7
+ suite: unittest.TestSuite
8
+ suite = unittest.TestLoader().discover(start_dir="datarepr.tests")
9
+ return unittest.TextTestRunner().run(suite)
@@ -1,5 +1,5 @@
1
1
  import unittest
2
- from typing import *
2
+ from typing import Self
3
3
 
4
4
  from datarepr.core import datarepr
5
5
 
@@ -1,5 +1,5 @@
1
1
  import unittest
2
- from typing import *
2
+ from typing import Self
3
3
 
4
4
  from datarepr.core import oxford
5
5
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: datarepr
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: This project allows for common sense data representation.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
@@ -1,11 +0,0 @@
1
- import unittest
2
-
3
- __all__ = ["test"]
4
-
5
-
6
- def test() -> unittest.TextTestResult:
7
- loader: unittest.TestLoader
8
- tests: unittest.TestSuite
9
- loader = unittest.TestLoader()
10
- tests = loader.discover(start_dir="datarepr.tests")
11
- return unittest.TextTestRunner().run(tests)
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