From 4d979d8cfdfb522cf79a5c6771a776bc8e493d6b Mon Sep 17 00:00:00 2001 From: Shawn Yang Date: Mon, 22 Apr 2024 19:53:31 +0800 Subject: [PATCH] remove snapshot maven install (#111) This PR removes snapshot maven artifact from install page. As incubator [vote thead](https://lists.apache.org/thread/og2f34rqgw472og9371ns90jq9tqx9qz) said, snapshot packages should not be included in project website and it's not allowed except for developers according apache release policy: https://www.apache.org/legal/release-policy.html#what . ![image](https://github.com/apache/incubator-fury-site/assets/12445254/ed7a6a38-0182-429b-ba7a-56d36299f007) --- docs/start/install.md | 41 +---------------------------------------- 1 file changed, 1 insertion(+), 40 deletions(-) diff --git a/docs/start/install.md b/docs/start/install.md index f9cc5d7b1..8c4a180d0 100644 --- a/docs/start/install.md +++ b/docs/start/install.md @@ -5,36 +5,7 @@ sidebar_position: 0 --- ### Java - -Nightly snapshot: - -```xml - - - apache - https://repository.apache.org/snapshots/ - - false - - - true - - - - - org.apache.fury - fury-core - 0.5.0-SNAPSHOT - - - -``` - -Release version: +To add a dependency on Fury using Maven, use the following: ```xml @@ -56,15 +27,6 @@ Maven groupId will be changed to `org.apache.fury` when next version is released libraryDependencies += "org.furyio" % "fury-core" % "0.4.1" ``` -### Python - -```bash -# Python wheel will be released in the future. -# Currently you need to specify `--pre` to install -# the unstable version. -pip install pyfury -``` - ### Golang ```bash @@ -85,5 +47,4 @@ npm install @furyjs/fury [dependencies] fury = { git= "https://github.com/apache/incubator-fury.git", branch = "main" } lazy_static = { version = "1.4.0" } - ```