Skip to content

Commit

Permalink
Update for v0.0.100
Browse files Browse the repository at this point in the history
  • Loading branch information
JWock82 authored and JWock82 committed Dec 7, 2024
1 parent 262b897 commit 20f912d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ jobs:

runs-on: ubuntu-latest

permissions:
id-token: write

steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -26,6 +23,9 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYNITE }}
run: |
python setup.py sdist bdist_wheel
twine upload --verbose dist/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Here's a list of projects that use PyNite:
* Phaenotyp (https://github.com/bewegende-Architektur/Phaenotyp) (https://youtu.be/shloSw9HjVI)

# What's New?
v0.0.99
v0.0.98-100
* Bug fix for `FEModel3D.add_section`. It was throwing exceptions and had not been updated to match the examples.
* Improvements to spring rendering in `pyvista`. Up until this point spring elements were being rendered as lines. They now render as zigzag lines in `pyvista`. There is still more work for improvement on spring rendering, but this is a good start.

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

setuptools.setup(
name="PyNiteFEA",
version="0.0.99",
version="0.0.100",
author="D. Craig Brinck, PE, SE",
author_email="[email protected]",
description="A simple elastic 3D structural finite element library for Python.",
Expand Down

0 comments on commit 20f912d

Please sign in to comment.