File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 19
19
import argparse
20
20
import logging
21
21
22
- import case_utils
23
- from case_utils .local_uuid import local_uuid
22
+ import cdo_local_uuid
24
23
from case_utils .namespace import NS_RDF , NS_UCO_CORE , NS_UCO_IDENTITY , NS_XSD
24
+ from cdo_local_uuid import local_uuid
25
25
from rdflib import Graph , Literal , Namespace
26
26
from rdflib .util import guess_format
27
27
@@ -53,11 +53,11 @@ def main() -> None:
53
53
args = argument_parser .parse_args ()
54
54
logging .basicConfig (level = logging .DEBUG if args .debug else logging .INFO )
55
55
56
- # See case_utils.local_uuid ._demo_uuid for how to use this to set up
56
+ # See cdo_local_uuid ._demo_uuid for how to use this to set up
57
57
# a process call that opts in to nonrandom UUIDs. Opting in is
58
58
# beneficial for generating and version-controlling example runs of
59
59
# this tool, but might not be appropriate for production operation.
60
- case_utils . local_uuid .configure ()
60
+ cdo_local_uuid .configure ()
61
61
62
62
# Define Namespace object to assist with generating individual nodes.
63
63
ns_kb = Namespace (args .kb_prefix_iri )
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ classifiers =
29
29
30
30
[options]
31
31
install_requires =
32
- case_utils >= 0.14 .0, < 0.15 .0
32
+ case_utils >= 0.15 .0, < 0.16 .0
33
33
packages = find:
34
34
python_requires = >=3.9
35
35
Original file line number Diff line number Diff line change 48
48
example_output.% : \
49
49
$(top_srcdir)/case_cli_example/cli.py \
50
50
$(top_srcdir)/tests/.venv.done.log
51
- export CASE_DEMO_NONRANDOM_UUID_BASE ="$(top_srcdir)" \
51
+ export CDO_DEMO_NONRANDOM_UUID_BASE ="$(top_srcdir)" \
52
52
&& source $(top_srcdir)/tests/venv/bin/activate \
53
53
&& case_cli_example \
54
54
_$@
@@ -60,7 +60,7 @@ example_output.%: \
60
60
example_output_debug.% : \
61
61
$(top_srcdir)/case_cli_example/cli.py \
62
62
$(top_srcdir)/tests/.venv.done.log
63
- export CASE_DEMO_NONRANDOM_UUID_BASE ="$(top_srcdir)" \
63
+ export CDO_DEMO_NONRANDOM_UUID_BASE ="$(top_srcdir)" \
64
64
&& source $(top_srcdir)/tests/venv/bin/activate \
65
65
&& case_cli_example \
66
66
--debug \
You can’t perform that action at this time.
0 commit comments