# HG changeset patch # User drewp@bigasterisk.com # Date 2023-05-24 06:40:02 # Node ID b0e6fe19dc3b4912db895bbebf6197af301dd386 # Parent 230748e76f53978a7e0dae2772b931bca1f11e89 make rdfdb editable diff --git a/.vscode/settings.json b/.vscode/settings.json --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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", diff --git a/light9/effect/sequencer/eval_faders.py b/light9/effect/sequencer/eval_faders.py --- a/light9/effect/sequencer/eval_faders.py +++ b/light9/effect/sequencer/eval_faders.py @@ -6,7 +6,7 @@ from typing import Callable, Coroutine, 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 diff --git a/pdm.lock b/pdm.lock --- a/pdm.lock +++ b/pdm.lock @@ -702,7 +702,8 @@ dependencies = [ 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 @@ dependencies = [ [metadata] lock_version = "4.1" -content_hash = "sha256:87020d26eb24328ebb0d89abe7e4343533e05a6cdd5286e57d1183d3f957ecdd" +content_hash = "sha256:b143dcaeecae81f7c7c117ef8680f17f1e7ba3b43102cf94d5dd000299db60bc" [metadata.files] "aiohttp 3.8.4" = [ @@ -2140,9 +2141,6 @@ content_hash = "sha256:87020d26eb24328eb {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"}, diff --git a/pyproject.toml b/pyproject.toml --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,6 @@ dependencies = [ "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 @@ dev = [ "pydeps>=1.12.5", "nose2>=0.13.0", "pytest-watch>=4.2.0", + "-e file:///my/proj/rdfdb#egg=rdfdb", ] [[tool.pdm.source]]