Skip to content
Merged
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
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,12 @@ jobs:
include:
- {python: '3.12', os: ubuntu-latest, session: tests}
- {python: '3.11', os: ubuntu-latest, session: tests}
- {python: '3.10', os: ubuntu-latest, session: tests}
- {python: '3.12', os: windows-latest, session: tests}
- {python: '3.11', os: windows-latest, session: tests}
- {python: '3.10', os: windows-latest, session: tests}
- {python: '3.12', os: macos-latest, session: tests}
- {python: '3.11', os: macos-latest, session: tests}
- {python: '3.10', os: macos-latest, session: tests}
- {python: '3.12', os: macos-13, session: tests}
- {python: '3.11', os: macos-13, session: tests}
- {python: '3.10', os: macos-13, session: tests}
- {python: '3.12', os: ubuntu-latest, session: tests-extended}

steps:
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.10, 3.11 or 3.12 to get started.
machine. You will need a working copy of python 3.11 or 3.12 to get started.

Installing ``sectionproperties``
--------------------------------
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10,<3.13"
requires-python = ">=3.11,<3.13"
dependencies = [
"numpy>=1.26.4",
"scipy>=1.14.1",
Expand Down Expand Up @@ -93,7 +92,7 @@ default-groups = ["dev", "docs", "lint", "test"]
[tool.pyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.10"
pythonVersion = "3.11"
include = ["src"]
exclude = ["**/__init__.py"]
strict = ["src"]
Expand Down
2 changes: 1 addition & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
target-version = "py310"
target-version = "py311"

[lint]
select = [
Expand Down
Loading