scaevola 1.0.12__tar.gz → 1.0.14__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,8 +1,8 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: scaevola
3
- Version: 1.0.12
3
+ Version: 1.0.14
4
4
  Summary: This project provides a class with preset right handed magic methods.
5
- Author-email: Johannes <johannes-programming@mailfence.com>
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
7
7
 
8
8
  Copyright (c) 2024 Johannes
@@ -36,9 +36,10 @@ Classifier: Programming Language :: Python
36
36
  Classifier: Programming Language :: Python :: 3
37
37
  Classifier: Programming Language :: Python :: 3 :: Only
38
38
  Classifier: Typing :: Typed
39
- Requires-Python: >=3.8
39
+ Requires-Python: >=3.11
40
40
  Description-Content-Type: text/x-rst
41
41
  License-File: LICENSE.txt
42
+ Dynamic: license-file
42
43
 
43
44
  ========
44
45
  scaevola
@@ -1,12 +1,12 @@
1
1
  [build-system]
2
2
  build-backend = "setuptools.build_meta"
3
3
  requires = [
4
- "setuptools>=61.0.0",
4
+ "setuptools>=61.0",
5
5
  ]
6
6
 
7
7
  [project]
8
8
  authors = [
9
- { email = "johannes-programming@mailfence.com", name = "Johannes" },
9
+ { email = "johannes.programming@gmail.com", name = "Johannes" },
10
10
  ]
11
11
  classifiers = [
12
12
  "Development Status :: 5 - Production/Stable",
@@ -23,8 +23,8 @@ description = "This project provides a class with preset right handed magic meth
23
23
  keywords = []
24
24
  name = "scaevola"
25
25
  readme = "README.rst"
26
- requires-python = ">=3.8"
27
- version = "1.0.12"
26
+ requires-python = ">=3.11"
27
+ version = "1.0.14"
28
28
 
29
29
  [project.license]
30
30
  file = "LICENSE.txt"
@@ -4,66 +4,66 @@ __all__ = ["Scaevola"]
4
4
 
5
5
 
6
6
  class Scaevola:
7
- def __ge__(self, other: Any) -> Any:
7
+ def __ge__(self: Self, other: Any) -> Any:
8
8
  "This magic method implements self>=other."
9
9
  return type(self)(other) <= self
10
10
 
11
- def __gt__(self, other: Any) -> Any:
11
+ def __gt__(self: Self, other: Any) -> Any:
12
12
  "This magic method implements self>other."
13
13
  return type(self)(other) < self
14
14
 
15
- def __radd__(self, other: Any) -> Any:
15
+ def __radd__(self: Self, other: Any) -> Any:
16
16
  "This magic method implements other+self."
17
17
  return type(self)(other) + self
18
18
 
19
- def __rand__(self, other: Any) -> Any:
19
+ def __rand__(self: Self, other: Any) -> Any:
20
20
  "This magic method implements other&self."
21
21
  return type(self)(other) & self
22
22
 
23
- def __rdivmod__(self, other: Any) -> Any:
23
+ def __rdivmod__(self: Self, other: Any) -> Any:
24
24
  "This magic method implements divmod(other, self)."
25
25
  return divmod(type(self)(other), self)
26
26
 
27
- def __rfloordiv__(self, other: Any) -> Any:
27
+ def __rfloordiv__(self: Self, other: Any) -> Any:
28
28
  "This magic method implements other//self."
29
29
  return type(self)(other) // self
30
30
 
31
- def __rlshift__(self, other: Any) -> Any:
31
+ def __rlshift__(self: Self, other: Any) -> Any:
32
32
  "This magic method implements other<<self."
33
33
  return type(self)(other) << self
34
34
 
35
- def __rmatmul__(self, other: Any) -> Any:
35
+ def __rmatmul__(self: Self, other: Any) -> Any:
36
36
  "This magic method implements other@self."
37
37
  return type(self)(other) @ self
38
38
 
39
- def __rmod__(self, other: Any) -> Any:
39
+ def __rmod__(self: Self, other: Any) -> Any:
40
40
  "This magic method implements other%self."
41
41
  return type(self)(other) % self
42
42
 
43
- def __rmul__(self, other: Any) -> Any:
43
+ def __rmul__(self: Self, other: Any) -> Any:
44
44
  "This magic method implements other*self."
45
45
  return type(self)(other) * self
46
46
 
47
- def __ror__(self, other: Any) -> Any:
47
+ def __ror__(self: Self, other: Any) -> Any:
48
48
  "This magic method implements other|self."
49
49
  return type(self)(other) | self
50
50
 
51
- def __rpow__(self, other: Any) -> Any:
51
+ def __rpow__(self: Self, other: Any) -> Any:
52
52
  "This magic method implements pow(other, self)."
53
53
  return type(self)(other) ** self
54
54
 
55
- def __rrshift__(self, other: Any) -> Any:
55
+ def __rrshift__(self: Self, other: Any) -> Any:
56
56
  "This magic method implements other>>self."
57
57
  return type(self)(other) >> self
58
58
 
59
- def __rsub__(self, other: Any) -> Any:
59
+ def __rsub__(self: Self, other: Any) -> Any:
60
60
  "This magic method implements other-self."
61
61
  return type(self)(other) - self
62
62
 
63
- def __rtruediv__(self, other: Any) -> Any:
63
+ def __rtruediv__(self: Self, other: Any) -> Any:
64
64
  "This magic method implements other/self."
65
65
  return type(self)(other) / self
66
66
 
67
- def __rxor__(self, other: Any) -> Any:
67
+ def __rxor__(self: Self, other: Any) -> Any:
68
68
  "This magic method implements other^self."
69
69
  return type(self)(other) ^ self
@@ -1,8 +1,8 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: scaevola
3
- Version: 1.0.12
3
+ Version: 1.0.14
4
4
  Summary: This project provides a class with preset right handed magic methods.
5
- Author-email: Johannes <johannes-programming@mailfence.com>
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
7
7
 
8
8
  Copyright (c) 2024 Johannes
@@ -36,9 +36,10 @@ Classifier: Programming Language :: Python
36
36
  Classifier: Programming Language :: Python :: 3
37
37
  Classifier: Programming Language :: Python :: 3 :: Only
38
38
  Classifier: Typing :: Typed
39
- Requires-Python: >=3.8
39
+ Requires-Python: >=3.11
40
40
  Description-Content-Type: text/x-rst
41
41
  License-File: LICENSE.txt
42
+ Dynamic: license-file
42
43
 
43
44
  ========
44
45
  scaevola
File without changes
File without changes
File without changes
File without changes