halfedge 0.12.0__tar.gz → 0.12.1__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: halfedge
3
- Version: 0.12.0
3
+ Version: 0.12.1
4
4
  Summary: A typical half-edge data structure with some padding
5
5
  Author: Shay Hill
6
6
  Author-email: Shay Hill <shay_public@hotmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "halfedge"
3
- version = "0.12.0"
3
+ version = "0.12.1"
4
4
  description = "A typical half-edge data structure with some padding"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -27,7 +27,7 @@ dev = [
27
27
 
28
28
  [tool.commitizen]
29
29
  kame = "cz_conventional_commits"
30
- version = "0.12.0"
30
+ version = "0.12.1"
31
31
  tag_format = "$version"
32
32
  major-version-zero = true
33
33
  version_files = ["pyproject.toml:^version"]
@@ -98,7 +98,7 @@ class StaticAttrib(Generic[_T]):
98
98
  self, value: _T | None = None, mesh: BlindHalfEdges | None = None
99
99
  ) -> None:
100
100
  """Set value and mesh."""
101
- self.cached_value = value
101
+ self.cached_value: _T | None = value
102
102
  self._mesh = mesh
103
103
 
104
104
  def copy_to_element(
@@ -207,7 +207,7 @@ class Attrib(Generic[_T]):
207
207
  self, value: _T | None = None, element: MeshElementBase | None = None
208
208
  ) -> None:
209
209
  """Set value and element."""
210
- self.cached_value = value
210
+ self.cached_value: _T | None = value
211
211
  self._element = element
212
212
 
213
213
  @property
File without changes