diff --git a/java/pom.xml b/java/pom.xml index b3a6c147c..6280303e4 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,5 +6,5 @@ com.logicalclocks hopsworks - 3.4.0-SNAPSHOT + 3.4.0-RC0 diff --git a/python/hopsworks/version.py b/python/hopsworks/version.py index a7574c66a..155f6d432 100644 --- a/python/hopsworks/version.py +++ b/python/hopsworks/version.py @@ -14,4 +14,4 @@ # limitations under the License. # -__version__ = "3.4.0.dev1" +__version__ = "3.4.0rc0" diff --git a/python/setup.py b/python/setup.py index 22a9f0f39..bc3477c4d 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.4.0rc0", + "hsml~=3.4.0rc0", "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",