Skip to content

Commit

Permalink
ci(*:skip) Reset versions to 1.15.1 (#4905)
Browse files Browse the repository at this point in the history
  • Loading branch information
panh99 authored Feb 5, 2025
1 parent 202d2b0 commit 2ec0561
Show file tree
Hide file tree
Showing 17 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion baselines/docs/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.16.0"
release = "1.15.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/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.16.0"
release = "1.15.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/whisper-federated-finetuning/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = "On-device Federated Finetuning for Speech Classification"
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.14.0",
"flwr[simulation]>=1.15.0",
"flwr-datasets[audio]>=0.5.0",
"transformers==4.44.2",
"torch==2.5.1",
Expand Down
2 changes: 1 addition & 1 deletion framework/docs/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.16.0"
release = "1.15.1"
# The current released version
rst_prolog = """
.. |stable_flwr_version| replace:: 1.15.0
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.16.0"
version = "1.15.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.16.0}
image: flwr/superlink:${FLWR_VERSION:-1.15.1}
command:
- --insecure
- --isolation
Expand All @@ -14,7 +14,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/serverapp:${FLWR_VERSION:-1.16.0}
FROM flwr/serverapp:${FLWR_VERSION:-1.15.1}
# gcc is required for the fastai quickstart example
USER root
Expand All @@ -40,7 +40,7 @@ services:

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

supernode-2:
image: flwr/supernode:${FLWR_VERSION:-1.16.0}
image: flwr/supernode:${FLWR_VERSION:-1.15.1}
command:
- --insecure
- --superlink
Expand All @@ -72,7 +72,7 @@ services:
# uncomment to add another SuperNode
#
# supernode-3:
# image: flwr/supernode:${FLWR_VERSION:-1.16.0}
# image: flwr/supernode:${FLWR_VERSION:-1.15.1}
# command:
# - --insecure
# - --superlink
Expand All @@ -91,7 +91,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.16.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.15.1}
# gcc is required for the fastai quickstart example
USER root
Expand Down Expand Up @@ -123,7 +123,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.16.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.15.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.16.0}
# FROM flwr/clientapp:${FLWR_VERSION:-1.15.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.16.0}
image: flwr/supernode:${FLWR_VERSION:-1.15.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.16.0}
image: flwr/supernode:${FLWR_VERSION:-1.15.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.16.0}
# image: flwr/supernode:${FLWR_VERSION:-1.15.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.16.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.15.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.16.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.15.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -105,7 +105,7 @@ services:
# build:
# context: ${PROJECT_DIR:-.}
# dockerfile_inline: |
# FROM flwr/clientapp:${FLWR_VERSION:-1.16.0}
# FROM flwr/clientapp:${FLWR_VERSION:-1.15.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.16.0}
image: flwr/superlink:${FLWR_VERSION:-1.15.1}
command:
- --isolation
- process
Expand All @@ -25,7 +25,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/serverapp:${FLWR_VERSION:-1.16.0}
FROM flwr/serverapp:${FLWR_VERSION:-1.15.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"flwr-datasets[vision]>=0.5.0",
"torch==2.5.1",
"torchvision==0.20.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"flwr-datasets>=0.5.0",
"torch==2.3.1",
"trl==0.8.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"flwr-datasets>=0.5.0",
"torch==2.5.1",
"transformers>=4.30.0,<5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/py/flwr/cli/new/templates/app/pyproject.jax.toml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"jax==0.4.30",
"jaxlib==0.4.30",
"scikit-learn==1.6.1",
Expand Down
2 changes: 1 addition & 1 deletion src/py/flwr/cli/new/templates/app/pyproject.mlx.toml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"flwr-datasets[vision]>=0.5.0",
"mlx==0.21.1",
]
Expand Down
2 changes: 1 addition & 1 deletion src/py/flwr/cli/new/templates/app/pyproject.numpy.toml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"numpy>=2.0.2",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"flwr-datasets[vision]>=0.5.0",
"torch==2.5.1",
"torchvision==0.20.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"flwr-datasets[vision]>=0.5.0",
"scikit-learn>=1.6.1",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = ""
license = "Apache-2.0"
dependencies = [
"flwr[simulation]>=1.16.0",
"flwr[simulation]>=1.15.1",
"flwr-datasets[vision]>=0.5.0",
"tensorflow>=2.11.1,<2.18.0",
]
Expand Down

0 comments on commit 2ec0561

Please sign in to comment.