Skip to content

Commit aa33516

Browse files
committed
update deps and versions
1 parent 4404565 commit aa33516

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "roboticstoolbox-python"
44

55
description = "A Python library for robotics education and research"
66

7-
version = "1.1.0"
7+
version = "1.2.0"
88

99
authors = [
1010
{ name = "Jesse Haviland", email = "j.haviland@qut.edu.au" },
@@ -29,7 +29,7 @@ license = { file = "LICENSE" }
2929

3030
readme = "README.md"
3131

32-
requires-python = ">=3.7"
32+
requires-python = ">=3.8"
3333

3434
keywords = [
3535
"python",
@@ -54,11 +54,11 @@ classifiers = [
5454
# Pick your license as you wish (should match "license" above)
5555
"License :: OSI Approved :: MIT License",
5656
# Specify the Python versions you support here.
57-
"Programming Language :: Python :: 3.7",
5857
"Programming Language :: Python :: 3.8",
5958
"Programming Language :: Python :: 3.9",
6059
"Programming Language :: Python :: 3.10",
6160
"Programming Language :: Python :: 3.11",
61+
"Programming Language :: Python :: 3.12",
6262
]
6363

6464

@@ -103,7 +103,7 @@ rtbtool = "roboticstoolbox.bin.rtbtool:main"
103103

104104
[build-system]
105105

106-
requires = ["setuptools", "oldest-supported-numpy"]
106+
requires = ["setuptools", "numpy>=2.0.0"]
107107
build-backend = "setuptools.build_meta"
108108

109109

@@ -133,7 +133,6 @@ packages = [
133133
[tool.black]
134134

135135
line-length = 88
136-
target_version = ['py37']
137136
args = '--experimental-string-processing'
138137

139138
include = '\.pyi?$'
@@ -175,8 +174,8 @@ extend-ignore = 'E203'
175174
manylinux-x86_64-image = "manylinux2014"
176175
manylinux-aarch64-image = "manylinux2014"
177176

178-
# Build CPython 3.7 - 3.11
179-
build = ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
177+
# Build CPython
178+
build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]
180179

181180
# Disable building musllinux wheels on all platforms
182181
skip = ["pp*", "*musllinux*"]

0 commit comments

Comments
 (0)