Skip to content

Commit 092525c

Browse files
committed
v0.6.0 and python support
1 parent 70c439f commit 092525c

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/codecov_test_suite.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
python-version:
25-
- "3.8"
2625
- "3.9"
2726
- "3.10"
2827
- "3.11"
28+
- "3.12"
29+
- "3.13"
2930

3031
name: Check Python ${{ matrix.python-version }}
3132
steps:

.github/workflows/pytest.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
python-version:
17-
- "3.8"
1817
- "3.9"
1918
- "3.10"
2019
- "3.11"
21-
20+
- "3.12"
21+
- "3.13"
22+
2223
name: Check Python ${{ matrix.python-version }}
2324
steps:
2425
- uses: actions/checkout@v2
25-
26+
2627
- name: Setup Python ${{ matrix.python-version }}
2728
uses: actions/setup-python@v2
2829
with:
@@ -43,10 +44,11 @@ jobs:
4344
fail-fast: false
4445
matrix:
4546
python-version:
46-
- "3.8"
4747
- "3.9"
4848
- "3.10"
4949
- "3.11"
50+
- "3.12"
51+
- "3.13"
5052

5153
name: Check Python ${{ matrix.python-version }}
5254
steps:

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ classifiers = [
2121
"Operating System :: POSIX :: Linux",
2222
"Operating System :: MacOS :: MacOS X",
2323
"Operating System :: Microsoft :: Windows",
24-
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2829
]
29-
requires-python = ">=3.8"
30+
requires-python = ">=3.9"
3031
dependencies = [
3132
"matplotlib",
3233
"numpy",

src/pycba/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PyCBA - Continuous Beam Analysis in Python
33
"""
44

5-
__version__ = "0.5.2"
5+
__version__ = "0.6.0"
66

77
from .analysis import BeamAnalysis
88
from .beam import Beam

0 commit comments

Comments
 (0)