Skip to content

Commit bd1d03a

Browse files
committed
update to v0.18.2
1 parent 92b11b3 commit bd1d03a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+24807
-546
lines changed

docs/source/conf.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,20 @@
1313
import os
1414
import re
1515
import sys
16+
sys.path.insert(0, os.path.abspath("../../"))
1617
sys.path.insert(0, os.path.abspath('../src'))
1718
sys.path.insert(0, os.path.abspath('../../src'))
1819

1920

2021
def get_version():
21-
VERSIONFILE = os.path.join('..', '..', 'src', 'sdynpy', '__init__.py')
22+
VERSIONFILE = os.path.join('..', '..', 'pyproject.toml')
2223
with open(VERSIONFILE, 'rt') as f:
2324
lines = f.readlines()
24-
vgx = '^__version__ = \"[0-9+.0-9+.0-9+]*[a-zA-Z0-9]*\"'
25+
vgx = 'version = \'[0-9+.0-9+.0-9+]*[a-zA-Z0-9]*\''
2526
for line in lines:
2627
mo = re.search(vgx, line, re.M)
2728
if mo:
28-
return mo.group().split('"')[1]
29+
return mo.group().split("'")[1]
2930
raise RuntimeError('Unable to find version in %s.' % (VERSIONFILE,))
3031

3132

docs/source/core_functionality.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Core Functionality
2+
==================
3+
4+
This section of the SDynPy documentation describes the core functionality of the
5+
package.
6+
7+
At its core, SDynPy contains objects that represent typical objects that are
8+
commonly used in structural dynamics. These objects are designed to make it
9+
easier to perform common tasks in structural dynamics, including signal
10+
processing, visualization, and bookkeeping.
11+
12+
13+
14+
.. toctree::
15+
:maxdepth: 2
16+
:caption: Contents:
17+
18+
core_functionality/package_layout
19+
core_functionality/data_model
20+
core_functionality/geometry
21+
core_functionality/coordinate
22+
core_functionality/shape
23+
core_functionality/data
24+
core_functionality/system
25+
core_functionality/matrix
26+
core_functionality/modal_analysis

0 commit comments

Comments
 (0)