Skip to content

Commit ccf704e

Browse files
committed
fix: Updated build process and version
1 parent 198bdc7 commit ccf704e

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

pyproject.toml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jsonconversion"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "This python module helps converting arbitrary Python objects into JSON strings and back."
55
keywords = ["json", "conversion", "serialization"]
66
readme = "README.rst"
@@ -27,9 +27,19 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"pytest-runner>=6.0.0",
30+
"numpy<2.0.0,>=1.22.4",
31+
"pytest>=6.0.0,<7.0.0",
3032
]
3133
license = {text = "BSD"}
3234
requires-python = ">=3.7"
3335

3436
[project.urls]
35-
Homepage = "https://github.com/DLR-RM/python-jsonconversion"
37+
Homepage = "https://github.com/DLR-RM/python-jsonconversion"
38+
39+
[tool.pdm.build]
40+
package-dir = "source"
41+
includes = ["source/jsonconversion"]
42+
43+
[build-system]
44+
requires = ["pdm-backend"]
45+
build-backend = "pdm.backend"

0 commit comments

Comments
 (0)