changeset 2222:b0e6fe19dc3b

make rdfdb editable
author drewp@bigasterisk.com
date Tue, 23 May 2023 23:40:02 -0700
parents 230748e76f53
children 9b6f4b3c329c
files .vscode/settings.json light9/effect/sequencer/eval_faders.py pdm.lock pyproject.toml
diffstat 4 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/.vscode/settings.json	Tue May 23 23:39:03 2023 -0700
+++ b/.vscode/settings.json	Tue May 23 23:40:02 2023 -0700
@@ -3,7 +3,10 @@
   "python.analysis.autoFormatStrings": true,
   "python.analysis.diagnosticMode": "workspace",
   "python.analysis.enablePytestSupport": true,
-  "python.analysis.extraPaths": ["__pypackages__/3.10/lib"],
+  "python.analysis.extraPaths": [
+    "__pypackages__/3.10/lib",
+    "/my/proj/rdfdb"
+  ],
   "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"],
   "python.defaultInterpreterPath": "./bin/python",
   "python.formatting.provider": "yapf",
--- a/light9/effect/sequencer/eval_faders.py	Tue May 23 23:39:03 2023 -0700
+++ b/light9/effect/sequencer/eval_faders.py	Tue May 23 23:40:02 2023 -0700
@@ -6,7 +6,7 @@
 from light9.collector.collector import uriTail
 from light9.typedgraph import typedValue
 
-from rdfdb.syncedgraph.syncedgraph import SyncedGraph
+from rdfdb import SyncedGraph
 from rdflib import URIRef
 
 from light9.effect import effecteval
--- a/pdm.lock	Tue May 23 23:39:03 2023 -0700
+++ b/pdm.lock	Tue May 23 23:40:02 2023 -0700
@@ -702,7 +702,8 @@
 name = "rdfdb"
 version = "0.24.0"
 requires_python = ">=3.9"
-url = "https://projects.bigasterisk.com/rdfdb/rdfdb-0.24.0.tar.gz"
+editable = true
+path = "/my/proj/rdfdb"
 summary = ""
 dependencies = [
     "aiohttp>=3.8.1",
@@ -1025,7 +1026,7 @@
 
 [metadata]
 lock_version = "4.1"
-content_hash = "sha256:87020d26eb24328ebb0d89abe7e4343533e05a6cdd5286e57d1183d3f957ecdd"
+content_hash = "sha256:b143dcaeecae81f7c7c117ef8680f17f1e7ba3b43102cf94d5dd000299db60bc"
 
 [metadata.files]
 "aiohttp 3.8.4" = [
@@ -2140,9 +2141,6 @@
     {url = "https://files.pythonhosted.org/packages/f8/ee/4138bfa745cf62ee1d5229bcafca102f15b3e5867cf18645c5bacfb4d7cb/pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:28fdb9224a258134784a9cf009b59265a9dde79582fb750d4e88a6bcbc6fa3dc"},
     {url = "https://files.pythonhosted.org/packages/fe/95/35cab273bd36529dafe7484713be28f1a22a775dc36fa4be7fc1d23eeeb8/pyzmq-25.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:65c19a63b4a83ae45d62178b70223adeee5f12f3032726b897431b6553aa25af"},
 ]
-"rdfdb 0.24.0" = [
-    {url = "https://projects.bigasterisk.com/rdfdb/rdfdb-0.24.0.tar.gz", hash = "sha256:ed8f29a27c8cf75356255f0929976da3f2ed322465050f112ccc65d6b9655e4a"},
-]
 "rdflib 6.3.2" = [
     {url = "https://files.pythonhosted.org/packages/af/92/d7fb1d7fb70c9f7003fa50b7a3880ebcb311cc3f8552b3595e7c8f75aeeb/rdflib-6.3.2-py3-none-any.whl", hash = "sha256:36b4e74a32aa1e4fa7b8719876fb192f19ecd45ff932ea5ebbd2e417a0247e63"},
     {url = "https://files.pythonhosted.org/packages/c8/28/4d1f27c5d73f58e567ca1a14a4eab7d7978a09c4e117687f9f6c216d3366/rdflib-6.3.2.tar.gz", hash = "sha256:72af591ff704f4caacea7ecc0c5a9056b8553e0489dd4f35a9bc52dbd41522e0"},
--- a/pyproject.toml	Tue May 23 23:39:03 2023 -0700
+++ b/pyproject.toml	Tue May 23 23:40:02 2023 -0700
@@ -35,7 +35,6 @@
     "uvicorn[standard]>=0.17.6",
     "watchdog>=2.1.7",
     "webcolors>=1.11.1",
-    "rdfdb @ https://projects.bigasterisk.com/rdfdb/rdfdb-0.24.0.tar.gz",
     "scipy>=1.9.3",
     "braillegraph>=0.6",
 ]
@@ -59,6 +58,7 @@
     "pydeps>=1.12.5",
     "nose2>=0.13.0",
     "pytest-watch>=4.2.0",
+    "-e file:///my/proj/rdfdb#egg=rdfdb",
 ]
 
 [[tool.pdm.source]]