This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-fury-site.git
The following commit(s) were added to refs/heads/main by this push:
new 4d979d8 remove snapshot maven install (#111)
4d979d8 is described below
commit 4d979d8cfdfb522cf79a5c6771a776bc8e493d6b
Author: Shawn Yang <[email protected]>
AuthorDate: Mon Apr 22 19:53:31 2024 +0800
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 .

---
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 f9cc5d7..8c4a180 100644
--- a/docs/start/install.md
+++ b/docs/start/install.md
@@ -5,36 +5,7 @@ sidebar_position: 0
---
### Java
-
-Nightly snapshot:
-
-```xml
-<repositories>
- <repository>
- <id>apache</id>
- <url>https://repository.apache.org/snapshots/</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
-</repositories>
-<dependency>
- <groupId>org.apache.fury</groupId>
- <artifactId>fury-core</artifactId>
- <version>0.5.0-SNAPSHOT</version>
-</dependency>
-<!-- row/arrow format support -->
-<!-- <dependency>
- <groupId>org.apache.fury</groupId>
- <artifactId>fury-format</artifactId>
- <version>0.5.0-SNAPSHOT</version>
-</dependency> -->
-```
-
-Release version:
+To add a dependency on Fury using Maven, use the following:
```xml
<dependency>
@@ -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" }
-
```
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]