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.
- {weac-2.6.2 → weac-2.6.3}/CITATION.cff +1 -1
- {weac-2.6.2/weac.egg-info → weac-2.6.3}/PKG-INFO +1 -1
- {weac-2.6.2 → weac-2.6.3}/pyproject.toml +6 -6
- {weac-2.6.2 → weac-2.6.3}/weac/__init__.py +1 -1
- {weac-2.6.2 → weac-2.6.3/weac.egg-info}/PKG-INFO +1 -1
- {weac-2.6.2 → weac-2.6.3}/LICENSE +0 -0
- {weac-2.6.2 → weac-2.6.3}/MANIFEST.in +0 -0
- {weac-2.6.2 → weac-2.6.3}/README.md +0 -0
- {weac-2.6.2 → weac-2.6.3}/img/bc.png +0 -0
- {weac-2.6.2 → weac-2.6.3}/img/layering.png +0 -0
- {weac-2.6.2 → weac-2.6.3}/img/logo.png +0 -0
- {weac-2.6.2 → weac-2.6.3}/img/model.png +0 -0
- {weac-2.6.2 → weac-2.6.3}/img/profiles.png +0 -0
- {weac-2.6.2 → weac-2.6.3}/img/systems.png +0 -0
- {weac-2.6.2 → weac-2.6.3}/setup.cfg +0 -0
- {weac-2.6.2 → weac-2.6.3}/tests/test_eigensystem.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/tests/test_layered.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/tests/test_mixins.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/tests/test_plot.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/tests/test_tools.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac/eigensystem.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac/inverse.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac/layered.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac/mixins.py +1 -1
- {weac-2.6.2 → weac-2.6.3}/weac/plot.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac/tools.py +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac.egg-info/SOURCES.txt +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac.egg-info/dependency_links.txt +0 -0
- {weac-2.6.2 → weac-2.6.3}/weac.egg-info/requires.txt +0 -0
- {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.
|
|
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
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "weac"
|
|
7
|
-
version = "2.6.
|
|
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.
|
|
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__ =
|
|
93
|
-
replace = "__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 =
|
|
101
|
-
replace = "release =
|
|
100
|
+
search = "release = \"{current_version}\""
|
|
101
|
+
replace = "release = \"{new_version}\""
|
|
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
|
|
File without changes
|