Merge pull request #297448 from thefossguy/dt-schema-2024.02
dt-schema: 2023.04 -> 2024.02
This commit is contained in:
commit
fbfd0ba176
2 changed files with 15 additions and 15 deletions
|
@ -12,8 +12,8 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "dtschema";
|
pname = "dtschema";
|
||||||
version = "2023.04";
|
version = "2024.02";
|
||||||
format = "setuptools";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
||||||
owner = "devicetree-org";
|
owner = "devicetree-org";
|
||||||
repo = "dt-schema";
|
repo = "dt-schema";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-w9TsRdiDTdExft7rdb2hYcvxP6hxOFZKI3hITiNSwgw=";
|
sha256 = "sha256-UJU8b9BzuuUSHRjnA6hOd1bMPNOlk4LNtrQV5aZmGhI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
diff --git a/setup.py b/setup.py
|
diff --git a/pyproject.toml b/pyproject.toml
|
||||||
index 62db8af..4a980c1 100755
|
index 2192a68..6a7ba95 100644
|
||||||
--- a/setup.py
|
--- a/pyproject.toml
|
||||||
+++ b/setup.py
|
+++ b/pyproject.toml
|
||||||
@@ -52,7 +52,7 @@ setuptools.setup(
|
@@ -27,7 +27,7 @@ dependencies = [
|
||||||
'ruamel.yaml>0.15.69',
|
"ruamel.yaml>0.15.69",
|
||||||
'jsonschema>=4.1.2',
|
"jsonschema>=4.1.2,<4.18",
|
||||||
'rfc3987',
|
"rfc3987",
|
||||||
- 'pylibfdt',
|
- "pylibfdt",
|
||||||
+ 'libfdt',
|
+ "libfdt",
|
||||||
],
|
]
|
||||||
|
|
||||||
classifiers=[
|
[project.scripts]
|
||||||
|
|
Loading…
Reference in a new issue