Skip to content

Commit

Permalink
LIU-407: Change to main EAGLE_test_repo branch
Browse files Browse the repository at this point in the history
  • Loading branch information
myxie committed Oct 8, 2024
1 parent cb53655 commit 58d7f23
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
8 changes: 5 additions & 3 deletions daliuge-engine/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,16 @@ def run(self):
"MPI": ["mpi4py"],
# AWS storage types
"aws": ["boto3"],
"test": ["pytest",
"eagle_test_graphs @ git+https://github.com/ICRAR/EAGLE_test_repo@LIU-407"]
"test": [
"pytest",
"eagle_test_graphs @ git+https://github.com/ICRAR/EAGLE_test_repo",
],
}

setup(
name="daliuge-engine",
version=get_version_info()[0],
description="Data Activated \uF9CA (flow) Graph Engine - Execution Engine",
description="Data Activated \uf9ca (flow) Graph Engine - Execution Engine",
long_description="""
The element of the DALiuGE system executing the workflows. This replaces
the former 'runtime' package (up to version 1.0). For more information
Expand Down
14 changes: 9 additions & 5 deletions daliuge-translator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
except PackageNotFoundError:
logger.warning(
"WARNING: daliuge-translator requires daliuge-common to be installed first. "
"Stopping installation...")
"Stopping installation..."
)
sys.exit(1)
RELEASE = True
VERSION_FILE = "dlg/translator/version.py"
Expand Down Expand Up @@ -122,14 +123,16 @@ def package_files(directory):
"wheel",
]
extra_requires = {
"test": ["pytest",
"eagle_test_graphs @ git+https://github.com/ICRAR/EAGLE_test_repo@LIU-407"]
"test": [
"pytest",
"eagle_test_graphs @ git+https://github.com/ICRAR/EAGLE_test_repo",
]
}

setup(
name="daliuge-translator",
version=get_version_info()[0],
description="Data Activated \uF9CA (flow) Graph Engine - Graph Translation",
description="Data Activated \uf9ca (flow) Graph Engine - Graph Translation",
long_description="The SKA-SDK prototype for the Execution Framework component",
author="ICRAR DIA Group",
author_email="[email protected]",
Expand All @@ -139,6 +142,7 @@ def package_files(directory):
extras_require=extra_requires,
packages=find_packages(),
package_data={"dlg": src_files},
entry_points={"dlg.tool_commands": ["translator=dlg.translator.tool_commands"]},
entry_points={"dlg.tool_commands": [
"translator=dlg.translator.tool_commands"]},
test_suite="test",
)

0 comments on commit 58d7f23

Please sign in to comment.