Skip to content

Commit

Permalink
refactor(framework:skip) Downgrade versions to 1.13.1 (#4584)
Browse files Browse the repository at this point in the history
  • Loading branch information
panh99 authored Nov 27, 2024
1 parent 031c298 commit e8262e2
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion baselines/doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
author = "The Flower Authors"

# The full version, including alpha/beta/rc tags
release = "1.14.0"
release = "1.13.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
author = "The Flower Authors"

# The full version of the next release, including alpha/beta/rc tags
release = "1.14.0"
release = "1.13.1"
# The current released version
rst_prolog = """
.. |stable_flwr_version| replace:: 1.13.0
Expand Down
2 changes: 1 addition & 1 deletion examples/doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = "The Flower Authors"

# The full version, including alpha/beta/rc tags
release = "1.14.0"
release = "1.13.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "flwr"
version = "1.14.0"
version = "1.13.1"
description = "Flower: A Friendly Federated AI Framework"
license = "Apache-2.0"
authors = ["The Flower Authors <[email protected]>"]
Expand Down
16 changes: 8 additions & 8 deletions src/docker/complete/compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
# create a SuperLink service
superlink:
image: flwr/superlink:${FLWR_VERSION:-1.14.0}
image: flwr/superlink:${FLWR_VERSION:-1.13.1}
command:
- --insecure
- --isolation
Expand All @@ -14,7 +14,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/serverapp:${FLWR_VERSION:-1.14.0}
FROM flwr/serverapp:${FLWR_VERSION:-1.13.1}
# gcc is required for the fastai quickstart example
USER root
Expand All @@ -40,7 +40,7 @@ services:

# create a two SuperNode service with different node configs
supernode-1:
image: flwr/supernode:${FLWR_VERSION:-1.14.0}
image: flwr/supernode:${FLWR_VERSION:-1.13.1}
command:
- --insecure
- --superlink
Expand All @@ -55,7 +55,7 @@ services:
- superlink

supernode-2:
image: flwr/supernode:${FLWR_VERSION:-1.14.0}
image: flwr/supernode:${FLWR_VERSION:-1.13.1}
command:
- --insecure
- --superlink
Expand All @@ -72,7 +72,7 @@ services:
# uncomment to add another SuperNode
#
# supernode-3:
# image: flwr/supernode:${FLWR_VERSION:-1.14.0}
# image: flwr/supernode:${FLWR_VERSION:-1.13.1}
# command:
# - --insecure
# - --superlink
Expand All @@ -90,7 +90,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.14.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.13.1}
# gcc is required for the fastai quickstart example
USER root
Expand Down Expand Up @@ -122,7 +122,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.14.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.13.1}
# gcc is required for the fastai quickstart example
USER root
Expand Down Expand Up @@ -156,7 +156,7 @@ services:
# build:
# context: ${PROJECT_DIR:-.}
# dockerfile_inline: |
# FROM flwr/clientapp:${FLWR_VERSION:-1.14.0}
# FROM flwr/clientapp:${FLWR_VERSION:-1.13.1}

# # gcc is required for the fastai quickstart example
# USER root
Expand Down
12 changes: 6 additions & 6 deletions src/docker/distributed/client/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
supernode-1:
image: flwr/supernode:${FLWR_VERSION:-1.14.0}
image: flwr/supernode:${FLWR_VERSION:-1.13.1}
command:
- --superlink
- ${SUPERLINK_IP:-127.0.0.1}:9092
Expand All @@ -17,7 +17,7 @@ services:
target: /app/certificates/superlink-ca.crt

supernode-2:
image: flwr/supernode:${FLWR_VERSION:-1.14.0}
image: flwr/supernode:${FLWR_VERSION:-1.13.1}
command:
- --superlink
- ${SUPERLINK_IP:-127.0.0.1}:9092
Expand All @@ -36,7 +36,7 @@ services:
# uncomment to add another SuperNode
#
# supernode-3:
# image: flwr/supernode:${FLWR_VERSION:-1.14.0}
# image: flwr/supernode:${FLWR_VERSION:-1.13.1}
# command:
# - --superlink
# - ${SUPERLINK_IP:-127.0.0.1}:9092
Expand All @@ -56,7 +56,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.14.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.13.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -80,7 +80,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.14.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.13.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -106,7 +106,7 @@ services:
# build:
# context: ${PROJECT_DIR:-.}
# dockerfile_inline: |
# FROM flwr/clientapp:${FLWR_VERSION:-1.14.0}
# FROM flwr/clientapp:${FLWR_VERSION:-1.13.1}

# WORKDIR /app
# COPY --chown=app:app pyproject.toml .
Expand Down
4 changes: 2 additions & 2 deletions src/docker/distributed/server/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
superlink:
image: flwr/superlink:${FLWR_VERSION:-1.14.0}
image: flwr/superlink:${FLWR_VERSION:-1.13.1}
command:
- --isolation
- process
Expand All @@ -25,7 +25,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/serverapp:${FLWR_VERSION:-1.14.0}
FROM flwr/serverapp:${FLWR_VERSION:-1.13.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand Down

0 comments on commit e8262e2

Please sign in to comment.