Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
types: [opened, reopened, synchronize]

env:
UV_VERSION: 0.6.17
DEFAULT_PYTHON_VERSION: '3.13'
UV_VERSION: 0.9.14
DEFAULT_PYTHON_VERSION: '3.14'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -71,19 +71,23 @@ jobs:
fail-fast: false
matrix:
include:
- {python: '3.14', os: ubuntu-latest, session: tests}
- {python: '3.13', os: ubuntu-latest, session: tests}
- {python: '3.12', os: ubuntu-latest, session: tests}
- {python: '3.11', os: ubuntu-latest, session: tests}
- {python: '3.14', os: windows-latest, session: tests}
- {python: '3.13', os: windows-latest, session: tests}
- {python: '3.12', os: windows-latest, session: tests}
- {python: '3.11', os: windows-latest, session: tests}
- {python: '3.14', os: macos-latest, session: tests}
- {python: '3.13', os: macos-latest, session: tests}
- {python: '3.12', os: macos-latest, session: tests}
- {python: '3.11', os: macos-latest, session: tests}
- {python: '3.14', os: macos-13, session: tests}
- {python: '3.13', os: macos-13, session: tests}
- {python: '3.12', os: macos-13, session: tests}
- {python: '3.11', os: macos-13, session: tests}
- {python: '3.13', os: ubuntu-latest, session: tests-extended}
- {python: '3.14', os: ubuntu-latest, session: tests-extended}

steps:
- name: Check out the repo
Expand Down Expand Up @@ -115,8 +119,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data-${{ matrix.session }}-${{ matrix.os }}-${{ matrix.python
}}
name: coverage-data-${{ matrix.session }}-${{ matrix.os }}-${{ matrix.python}}
include-hidden-files: true
path: .coverage.*

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- master

env:
UV_VERSION: 0.6.17
DEFAULT_PYTHON_VERSION: '3.13'
UV_VERSION: 0.9.14
DEFAULT_PYTHON_VERSION: '3.14'

jobs:
release:
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Installation instructions for other methods and Windows can be found [here](http
`uv` can then be used to install the latest compatible version of python:

```shell
uv python install 3.13
uv python install 3.14
```

`sectionproperties` and it's development dependencies can be installed with:
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Installation instructions for other methods and Windows can be found

.. code:: shell

uv python install 3.13
uv python install 3.14

``sectionproperties`` and it's development dependencies can be installed with:

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Installation
============

These instructions will get you a copy of ``sectionproperties`` up and running on your
machine. You will need a working copy of python 3.11, 3.12 or 3.13 to get started.
machine. You will need a working copy of python 3.11, 3.12, 3.13, or 3.14 to get started.

Installing ``sectionproperties``
--------------------------------
Expand Down
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,17 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.11,<3.14"
requires-python = ">=3.11"
dependencies = [
"numpy~=2.2",
"scipy~=1.14",
"matplotlib~=3.9",
"shapely~=2.0",
"cytriangle~=2.0",
"rich[jupyter]~=14.0",
"more-itertools~=10.5",
"numpy",
"scipy",
"matplotlib",
"shapely",
"cytriangle",
"rich[jupyter]",
"more-itertools",
]

[project.urls]
Expand Down
3,036 changes: 1,721 additions & 1,315 deletions uv.lock

Large diffs are not rendered by default.

Loading