diff --git a/java/pom.xml b/java/pom.xml
index c416af622..90c91261a 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -6,5 +6,5 @@
com.logicalclocks
hopsworks
- 3.5.0-SNAPSHOT
+ 3.5.0-RC0
diff --git a/python/hopsworks/version.py b/python/hopsworks/version.py
index 79aa5a467..293bc4844 100644
--- a/python/hopsworks/version.py
+++ b/python/hopsworks/version.py
@@ -14,4 +14,4 @@
# limitations under the License.
#
-__version__ = "3.5.0.dev1"
+__version__ = "3.5.0rc0"
diff --git a/python/setup.py b/python/setup.py
index 22a9f0f39..c67f79e5c 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -16,8 +16,8 @@ def read(fname):
name="hopsworks",
version=__version__,
install_requires=[
- "hsfs @ git+https://git@github.com/logicalclocks/feature-store-api@master#egg=hsfs[python]&subdirectory=python",
- "hsml @ git+https://git@github.com/logicalclocks/machine-learning-api@main#egg=hsml&subdirectory=python",
+ "hsfs[python]>=3.5.0,<3.6.0",
+ "hsml>=3.5.0,<3.6.0",
"pyhumps==1.6.1",
"requests",
"furl",
@@ -48,7 +48,7 @@ def read(fname):
download_url="https://github.com/logicalclocks/hopsworks-api/releases/tag/"
+ __version__,
packages=find_packages(),
- long_description=read("../README.md"),
+ long_description=read("README.md"),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",