Skip to content

Commit af00fb4

Browse files
Update pyproject.toml: PEP639, bump Python version
1 parent a8a58b6 commit af00fb4

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

pyproject.toml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
[build-system]
2-
requires = ["setuptools>=61.0"]
2+
requires = [
3+
"setuptools>=77.0"
4+
]
35
build-backend = "setuptools.build_meta"
46

57
[project]
68
name = "xobjects"
79
dynamic = ["version"]
810
description = "In-memory serialization and code generator for CPU and GPU"
9-
readme = ""
11+
readme = "README.md"
1012
authors = [
1113
{ name = "Riccardo De Maria", email = "[email protected]" }
1214
]
13-
license = { text = "Apache 2.0" }
14-
requires-python = ">=3.7"
15+
license = "Apache-2.0"
16+
requires-python = ">=3.9"
1517
dependencies = [
1618
"numpy",
1719
"cffi",
@@ -41,3 +43,8 @@ include = '\.pyi?$'
4143

4244
[project.entry-points.xobjects]
4345
include = "xobjects"
46+
47+
[pytest]
48+
markers = [
49+
"context_dependent: marks test as one that depends on the execution context",
50+
]

0 commit comments

Comments
 (0)