Skip to content

Commit

Permalink
Merge pull request #725 from FederatedAI/dev-3.2.0
Browse files Browse the repository at this point in the history
Update Python Dependencies To Support Python3.10+
  • Loading branch information
Xiong-Li-github authored Aug 21, 2024
2 parents ee886f0 + ae41ff9 commit b225311
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 16 deletions.
2 changes: 1 addition & 1 deletion BUILD_INFO
Original file line number Diff line number Diff line change
@@ -1 +1 @@
eggroll.version=3.1.0
eggroll.version=3.2.0
9 changes: 9 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Release 3.2.0
1. Upgrade from Python 3.8 to Python 3.10


## Release 3.1.0
1. add 2.x api backport support
2. some bug fix


## Release 3.0.0

**Enhancements in the JVM Part:**
Expand Down
4 changes: 2 additions & 2 deletions jvm/cluster_dashboard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>eggroll-all</artifactId>
<groupId>org.fedai.eggroll</groupId>
<relativePath>../pom.xml</relativePath>
<version>3.1.0</version>
<version>3.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cluster_dashboard</artifactId>
Expand Down Expand Up @@ -162,4 +162,4 @@
<!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>-->
<!-- </properties>-->

</project>
</project>
4 changes: 2 additions & 2 deletions jvm/cluster_manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>org.fedai.eggroll</groupId>
<artifactId>eggroll-all</artifactId>
<relativePath>../pom.xml</relativePath>
<version>3.1.0</version>
<version>3.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cluster_manager</artifactId>
Expand Down Expand Up @@ -100,4 +100,4 @@
<artifactId>commons-collections</artifactId>
</dependency>
</dependencies>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

[eggroll]
application.title=eggroll
application.version=3.1.0
application.version=3.2.0
# core
#eggroll.resourcemanager.clustermanager.jdbc.driver.class.name=org.h2.Driver
eggroll.resourcemanager.clustermanager.jdbc.driver.class.name=com.mysql.cj.jdbc.Driver
Expand Down
4 changes: 2 additions & 2 deletions jvm/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>org.fedai.eggroll</groupId>
<artifactId>eggroll-all</artifactId>
<relativePath>../pom.xml</relativePath>
<version>3.1.0</version>
<version>3.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core</artifactId>
Expand Down Expand Up @@ -142,4 +142,4 @@
</plugins>
</build>

</project>
</project>
4 changes: 2 additions & 2 deletions jvm/node_manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>eggroll-all</artifactId>
<groupId>org.fedai.eggroll</groupId>
<relativePath>../pom.xml</relativePath>
<version>3.1.0</version>
<version>3.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>node_manager</artifactId>
Expand Down Expand Up @@ -43,4 +43,4 @@
</dependency>
</dependencies>

</project>
</project>
4 changes: 2 additions & 2 deletions jvm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>org.fedai.eggroll</groupId>
<artifactId>eggroll-all</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<name>Eggroll Project</name>

<licenses>
Expand Down Expand Up @@ -145,7 +145,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<eggroll.version>3.1.0</eggroll.version>
<eggroll.version>3.2.0</eggroll.version>

<!-- Languages -->
<code.cache.size>512m</code.cache.size>
Expand Down
2 changes: 1 addition & 1 deletion python/eggroll/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

__version__ = "3.1.0"
__version__ = "3.2.0"

import os

Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

setup_kwargs = {
"name": "eggroll",
"version": "3.1.0",
"version": "3.2.0",
"description": "Python Side Client and Server for Eggroll",
"long_description_content_type": "text/markdown",
"long_description": "Python Side Client and Server for Eggroll",
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cloudpickle==2.1.0
lmdb==1.3.0
protobuf==4.24.4
grpcio==1.59.3
grpcio-tools==1.59.3
grpcio==1.62.1
grpcio-tools==1.62.1
psutil>=5.7.0
opentelemetry-api
opentelemetry-sdk
Expand Down

0 comments on commit b225311

Please sign in to comment.