Skip to content

Commit

Permalink
ci: fix the dependency in e2e tests and python package
Browse files Browse the repository at this point in the history
Signed-off-by: Yurii Shynbuiev <yurii.shynbuiev@iohk.io>
  • Loading branch information
yshyn-iohk committed Apr 29, 2024
1 parent b901d2b commit 9e9a122
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions cloud-agent/client/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8

"""
Prism Agent
Identus Cloud Agent
No description provided
Expand All @@ -11,7 +11,7 @@

from setuptools import setup, find_packages # noqa: H301

NAME = "open-enterprise-agent-python-client"
NAME = "cloud-agent-client-python"
VERSION = "0.0.1"

REQUIRES = [
Expand All @@ -26,16 +26,16 @@
setup(
name=NAME,
version=VERSION,
description="Prism Agent Client",
description="Identus Cloud Agent Client",
author="Allain Magyar",
author_email="",
url="https://github.com/hyperledger-labs/open-enterprise-agent",
keywords=["Prism Agent"],
url="https://github.com/hyperledger/identus-cloud-agent",
keywords=["Identus Cloud Agent Client"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="""\
Prism-agent models generated from OpenAPI Specification
Identus Cloud Agent models generated from the OpenAPI Specification
"""
)
2 changes: 1 addition & 1 deletion tests/integration-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
testImplementation("io.ktor:ktor-server-netty:2.3.0")
testImplementation("io.ktor:ktor-client-apache:2.3.0")
// RestAPI client
testImplementation("org.hyperledger.identus:identus-kotlin-client:1.32.0")
testImplementation("org.hyperledger.identus:cloud-agent-client-kotlin:1.32.0")
// Test helpers library
testImplementation("io.iohk.atala:atala-automation:0.3.2")
// Hoplite for configuration
Expand Down

0 comments on commit 9e9a122

Please sign in to comment.