weac 2.6.2__tar.gz → 2.6.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 (30) hide show
  1. {weac-2.6.2 → weac-2.6.3}/CITATION.cff +1 -1
  2. {weac-2.6.2/weac.egg-info → weac-2.6.3}/PKG-INFO +1 -1
  3. {weac-2.6.2 → weac-2.6.3}/pyproject.toml +6 -6
  4. {weac-2.6.2 → weac-2.6.3}/weac/__init__.py +1 -1
  5. {weac-2.6.2 → weac-2.6.3/weac.egg-info}/PKG-INFO +1 -1
  6. {weac-2.6.2 → weac-2.6.3}/LICENSE +0 -0
  7. {weac-2.6.2 → weac-2.6.3}/MANIFEST.in +0 -0
  8. {weac-2.6.2 → weac-2.6.3}/README.md +0 -0
  9. {weac-2.6.2 → weac-2.6.3}/img/bc.png +0 -0
  10. {weac-2.6.2 → weac-2.6.3}/img/layering.png +0 -0
  11. {weac-2.6.2 → weac-2.6.3}/img/logo.png +0 -0
  12. {weac-2.6.2 → weac-2.6.3}/img/model.png +0 -0
  13. {weac-2.6.2 → weac-2.6.3}/img/profiles.png +0 -0
  14. {weac-2.6.2 → weac-2.6.3}/img/systems.png +0 -0
  15. {weac-2.6.2 → weac-2.6.3}/setup.cfg +0 -0
  16. {weac-2.6.2 → weac-2.6.3}/tests/test_eigensystem.py +0 -0
  17. {weac-2.6.2 → weac-2.6.3}/tests/test_layered.py +0 -0
  18. {weac-2.6.2 → weac-2.6.3}/tests/test_mixins.py +0 -0
  19. {weac-2.6.2 → weac-2.6.3}/tests/test_plot.py +0 -0
  20. {weac-2.6.2 → weac-2.6.3}/tests/test_tools.py +0 -0
  21. {weac-2.6.2 → weac-2.6.3}/weac/eigensystem.py +0 -0
  22. {weac-2.6.2 → weac-2.6.3}/weac/inverse.py +0 -0
  23. {weac-2.6.2 → weac-2.6.3}/weac/layered.py +0 -0
  24. {weac-2.6.2 → weac-2.6.3}/weac/mixins.py +1 -1
  25. {weac-2.6.2 → weac-2.6.3}/weac/plot.py +0 -0
  26. {weac-2.6.2 → weac-2.6.3}/weac/tools.py +0 -0
  27. {weac-2.6.2 → weac-2.6.3}/weac.egg-info/SOURCES.txt +0 -0
  28. {weac-2.6.2 → weac-2.6.3}/weac.egg-info/dependency_links.txt +0 -0
  29. {weac-2.6.2 → weac-2.6.3}/weac.egg-info/requires.txt +0 -0
  30. {weac-2.6.2 → weac-2.6.3}/weac.egg-info/top_level.txt +0 -0
@@ -8,7 +8,7 @@ authors:
8
8
  - family-names: "Weissgraeber"
9
9
  given-names: "Philipp"
10
10
  orcid: "https://orcid.org/0000-0001-8320-8672"
11
- version: 2.6.2
11
+ version: 2.6.3
12
12
  date-released: 2021-12-30
13
13
  identifiers:
14
14
  - description: Collection of archived snapshots of all versions of WEAC
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weac
3
- Version: 2.6.2
3
+ Version: 2.6.3
4
4
  Summary: Weak layer anticrack nucleation model
5
5
  Author-email: 2phi GbR <mail@2phi.de>
6
6
  License: Proprietary
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "weac"
7
- version = "2.6.2"
7
+ version = "2.6.3"
8
8
  authors = [
9
9
  {name = "2phi GbR", email = "mail@2phi.de"},
10
10
  ]
@@ -77,7 +77,7 @@ ignore-patterns = [".*\\.ipynb$"]
77
77
  ignore = ["E121", "E123", "E126", "E211", "E226", "E24", "E704", "W503", "W504", "E741"]
78
78
 
79
79
  [tool.bumpversion]
80
- current_version = "2.6.2"
80
+ current_version = "2.6.3"
81
81
  tag = true
82
82
  commit = true
83
83
 
@@ -89,13 +89,13 @@ filename = "CITATION.cff"
89
89
 
90
90
  [[tool.bumpversion.files]]
91
91
  filename = "weac/__init__.py"
92
- search = "__version__ = '{current_version}'"
93
- replace = "__version__ = '{new_version}'"
92
+ search = "__version__ = \"{current_version}\""
93
+ replace = "__version__ = \"{new_version}\""
94
94
 
95
95
  [[tool.bumpversion.files]]
96
96
  filename = "demo/demo.ipynb"
97
97
 
98
98
  [[tool.bumpversion.files]]
99
99
  filename = "docs/sphinx/conf.py"
100
- search = "release = '{current_version}'"
101
- replace = "release = '{new_version}'"
100
+ search = "release = \"{current_version}\""
101
+ replace = "release = \"{new_version}\""
@@ -11,7 +11,7 @@ from weac.inverse import Inverse
11
11
  from weac.layered import Layered
12
12
 
13
13
  # Version
14
- __version__ = "2.6.1"
14
+ __version__ = "2.6.3"
15
15
 
16
16
  # Public names
17
17
  __all__ = ["Layered", "Inverse", "plot"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weac
3
- Version: 2.6.2
3
+ Version: 2.6.3
4
4
  Summary: Weak layer anticrack nucleation model
5
5
  Author-email: 2phi GbR <mail@2phi.de>
6
6
  License: Proprietary
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -779,8 +779,8 @@ class SlabContactMixin:
779
779
  """Set class attributes for touchdown consideration"""
780
780
  self.set_columnlength(L)
781
781
  self.set_cracklength(a)
782
- self.set_tc(cf)
783
782
  self.set_phi(phi)
783
+ self.set_tc(cf)
784
784
  self.set_stiffness_ratio(ratio)
785
785
 
786
786
  def calc_touchdown_mode(self):
File without changes
File without changes
File without changes
File without changes
File without changes