Skip to content

Commit

Permalink
Merge pull request #5 from bennettgoble/llsd
Browse files Browse the repository at this point in the history
Switch to llsd serialization library
  • Loading branch information
bennettgoble authored Sep 28, 2022
2 parents 4e63112 + 46afbf1 commit d28e923
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions autobuild/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
Any code that is potentially common to all autobuild sub-commands
should live in this module. This module should never depend on any
other autobuild module.
Importing this module will also guarantee that certain dependencies
are available, such as llbase
"""
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion autobuild/configfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
from io import StringIO

from llbase import llsd
import llsd

from autobuild import common
from autobuild.executable import Executable
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['llbase', 'pydot'],
install_requires=['llsd', 'pydot'],
extras_require={
'dev': ['pytest', 'pytest-cov'],
'build': ['build', 'setuptools_scm'],
Expand Down
2 changes: 1 addition & 1 deletion tests/test_edit.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from llbase import llsd
import llsd

from autobuild import configfile
from autobuild.autobuild_tool_edit import AutobuildTool
Expand Down

0 comments on commit d28e923

Please sign in to comment.