Skip to content

Commit 3ee3540

Browse files
committed
Bump case-utils to 0.15.0
No effects were observed on Make-managed files. Signed-off-by: Alex Nelson <[email protected]>
1 parent e67f247 commit 3ee3540

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

case_cli_example/cli.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
import argparse
2020
import logging
2121

22-
import case_utils
23-
from case_utils.local_uuid import local_uuid
22+
import cdo_local_uuid
2423
from case_utils.namespace import NS_RDF, NS_UCO_CORE, NS_UCO_IDENTITY, NS_XSD
24+
from cdo_local_uuid import local_uuid
2525
from rdflib import Graph, Literal, Namespace
2626
from rdflib.util import guess_format
2727

@@ -53,11 +53,11 @@ def main() -> None:
5353
args = argument_parser.parse_args()
5454
logging.basicConfig(level=logging.DEBUG if args.debug else logging.INFO)
5555

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
5757
# a process call that opts in to nonrandom UUIDs. Opting in is
5858
# beneficial for generating and version-controlling example runs of
5959
# this tool, but might not be appropriate for production operation.
60-
case_utils.local_uuid.configure()
60+
cdo_local_uuid.configure()
6161

6262
# Define Namespace object to assist with generating individual nodes.
6363
ns_kb = Namespace(args.kb_prefix_iri)

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ classifiers =
2929

3030
[options]
3131
install_requires =
32-
case_utils >= 0.14.0, < 0.15.0
32+
case_utils >= 0.15.0, < 0.16.0
3333
packages = find:
3434
python_requires = >=3.9
3535

tests/cli/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ clean:
4848
example_output.%: \
4949
$(top_srcdir)/case_cli_example/cli.py \
5050
$(top_srcdir)/tests/.venv.done.log
51-
export CASE_DEMO_NONRANDOM_UUID_BASE="$(top_srcdir)" \
51+
export CDO_DEMO_NONRANDOM_UUID_BASE="$(top_srcdir)" \
5252
&& source $(top_srcdir)/tests/venv/bin/activate \
5353
&& case_cli_example \
5454
_$@
@@ -60,7 +60,7 @@ example_output.%: \
6060
example_output_debug.%: \
6161
$(top_srcdir)/case_cli_example/cli.py \
6262
$(top_srcdir)/tests/.venv.done.log
63-
export CASE_DEMO_NONRANDOM_UUID_BASE="$(top_srcdir)" \
63+
export CDO_DEMO_NONRANDOM_UUID_BASE="$(top_srcdir)" \
6464
&& source $(top_srcdir)/tests/venv/bin/activate \
6565
&& case_cli_example \
6666
--debug \

0 commit comments

Comments
 (0)