Skip to content

Commit cefe40a

Browse files
committed
Support any Python >=3.8; bump to version 2.3.1.
1 parent 6b79702 commit cefe40a

File tree

4 files changed

+201
-12
lines changed

4 files changed

+201
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ including:
1515
* Basic quaternion functions.
1616

1717
## Install and run
18-
This package supports **Python 3.8–3.12**. It has been tested on Ubuntu 16.04,
19-
18.04, 20.04, and 24.04.
18+
This package requires at least **Python 3.8**. It has been tested on Ubuntu
19+
16.04, 18.04, 20.04, and 24.04.
2020

2121
### From pip
2222
```

docs/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
author = 'Adam Heins'
2626

2727
# The short X.Y version
28-
version = '2.3.0'
28+
version = '2.3.1'
2929
# The full version, including alpha/beta/rc tags
3030
release = version
3131

pyproject.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "pyb_utils"
3-
version = "2.3.0"
3+
version = "2.3.1"
44
description = "Basic utilities for PyBullet, including collision detection, ghost (i.e. visual-only) objects, and cameras."
55
authors = [
66
{name = "Adam Heins", email = "mail@adamheins.com"}
77
]
88
license = { text = "MIT" }
99
readme = "README.md"
10-
requires-python = ">=3.8,<3.13"
10+
requires-python = ">=3.8"
1111
dependencies = [
1212
"numpy>=1.24.0",
1313
"scipy>=1.10.0",
@@ -24,11 +24,8 @@ dev = [
2424
]
2525

2626
[build-system]
27-
requires = ["setuptools>=42"]
28-
build-backend = "setuptools.build_meta"
29-
30-
[tool.setuptools.packages.find]
31-
include = ["pyb_utils"]
27+
requires = ["hatchling"]
28+
build-backend = "hatchling.build"
3229

3330
[tool.black]
3431
line-length = 80

0 commit comments

Comments
 (0)