Skip to content

Commit

Permalink
Merge pull request #553 from FederatedAI/feature-2.0.0-rc-dag_change
Browse files Browse the repository at this point in the history
Feature 2.0.0 rc dag change
  • Loading branch information
zhihuiwan authored Dec 29, 2023
2 parents 1152a14 + 34b59d2 commit 21d7756
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Binary file modified doc/images/fate_arch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion python/fate_flow/commands/server_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def init_server(ip, port, home):

if ip or port:
with open(SERVER_CONF_PATH, "w") as file:
yaml.dump(config, file)
yaml.dump(config, file, default_flow_style=False)

print("Init server completed!")

Expand Down
12 changes: 6 additions & 6 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
packages = find_packages(".")
install_requires = [
"apsw",
"Flask",
"grpcio",
"grpcio-tools",
"Flask==2.2.5",
"grpcio==1.59.3",
"grpcio-tools==1.59.3",
"requests",
"urllib3",
"cachetools",
"filelock",
"pydantic",
"pydantic==1.10.12",
"webargs",
"peewee",
"python-dotenv",
Expand All @@ -28,7 +28,7 @@
"shortuuid",
"cos-python-sdk-v5",
"typing-extensions",
"ruamel-yaml==0.16",
"ruamel.yaml==0.16",
"boto3"
]
extras_require = {
Expand All @@ -43,7 +43,7 @@
"grpcio-tools",
"protobuf",
],
"all": ["fate_flow[rabbitmq,pulsar,spark,eggroll]"],
"fate_flow": ["fate_flow[rabbitmq,pulsar,spark,eggroll]"],
}


Expand Down

0 comments on commit 21d7756

Please sign in to comment.