Skip to content

Commit 3d7814e

Browse files
Merge pull request #10 from StructuralPython/releases/v0.4.1
chore: fix CI to 3.13; update minimum python, update lock file
2 parents bd9c07d + a444e15 commit 3d7814e

File tree

4 files changed

+472
-631
lines changed

4 files changed

+472
-631
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v3
2727
with:
28-
python-version: '3.x'
28+
python-version: '3.13'
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ readme = "README.md"
55
authors = [
66
{ name = "Connor Ferster", email = "[email protected]" }
77
]
8-
requires-python = ">=3.11"
8+
requires-python = ">=3.12"
99
dependencies = [
1010
"pydantic_core>=2.41.1",
1111
"pydantic>=2.12.0",

src/sectionproperties_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sectionproperties_tools
33
"""
44

5-
__version__ = "0.4.1"
5+
__version__ = "0.4.2"
66

77
from .extraction import (extract_properties, envelope_stress_results)
88
from .serialize import (

0 commit comments

Comments
 (0)