Skip to content

Commit

Permalink
REL: Version 2021.4
Browse files Browse the repository at this point in the history
  • Loading branch information
saullocastro committed Apr 19, 2021
1 parent ddcd624 commit 5f00e49
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
pip3 install setuptools wheel twine
pip3 install -r requirements.txt
- name: Build Windows Python wheels
if: matrix.runs-on == 'windows-latest'
if: matrix.runs-on == 'windows-latest' && matrix.python-version == 3.9
run: |
python3 setup.py sdist bdist_wheel
- name: Publish Windows Python wheels
if: matrix.runs-on == 'windows-latest'
if: matrix.runs-on == 'windows-latest' && matrix.python-version == 3.9
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ Ae4-ASM-511
This Python module can be used by the students to assist them in the
assignments.

Documentation
-------------

The documentation is available on: https://saullocastro.github.io/tudaesasII/


Citing this repository
----------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


is_released = True
version = '2021.3'
version = '2021.4'


def git_version():
Expand Down
2 changes: 1 addition & 1 deletion tudaesasII/beam2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def uv(beam, u1, v1, beta1, u2, v2, beta2, n=100):
def exx(beam, y, xi, u1, v1, beta1, u2, v2, beta2):
"""Calculate the axial strain exx for a Beam2D element
Strains are calculated assuming constant rot
Strains are calculated assuming a constant cross-section rotation as:
exx = exx0 + y*kxx
Expand Down

0 comments on commit 5f00e49

Please sign in to comment.