Skip to content

Commit 95081ab

Browse files
authored
Update python package (#3328)
Fixes #3327
1 parent 5992b20 commit 95081ab

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
[![Build Status](https://github.com/vortex-data/vortex/actions/workflows/ci.yml/badge.svg)](https://github.com/vortex-data/vortex/actions)
44
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/10567/badge)](https://www.bestpractices.dev/projects/10567)
5-
[![Documentation](https://docs.rs/vortex-array/badge.svg)](https://docs.vortex.dev)
5+
[![Documentation](https://docs.rs/vortex/badge.svg)](https://docs.vortex.dev)
66
[![CodSpeed Badge](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/vortex-data/vortex)
7-
[![Crates.io](https://img.shields.io/crates/v/vortex-array.svg)](https://crates.io/crates/vortex-array)
8-
[![PyPI - Version](https://img.shields.io/pypi/v/vortex-array)](https://pypi.org/project/vortex-array/)
7+
[![Crates.io](https://img.shields.io/crates/v/vortex.svg)](https://crates.io/crates/vortex)
8+
[![PyPI - Version](https://img.shields.io/pypi/v/vortex-data)](https://pypi.org/project/vortex-data/)
99
[![Maven - Version](https://img.shields.io/maven-central/v/dev.vortex/vortex-spark)](https://central.sonatype.com/artifact/dev.vortex/vortex-spark)
1010

1111
📚 [Documentation](https://docs.vortex.dev/) | 📊 [Performance Benchmarks](https://bench.vortex.dev)
@@ -15,14 +15,14 @@
1515
Vortex is a next-generation columnar file format and toolkit designed for high-performance data analytics. It provides:
1616

1717
- **⚡️ Blazing Fast Performance**
18-
- 100-200x faster random access reads than Apache Parquet
19-
- 2-10x faster scans with similar compression ratios and write throughput
20-
- Efficient support for wide tables with zero-copy/zero-parse metadata
18+
- 100-200x faster random access reads than Apache Parquet
19+
- 2-10x faster scans with similar compression ratios and write throughput
20+
- Efficient support for wide tables with zero-copy/zero-parse metadata
2121

2222
- **🔧 Extensible Architecture**
23-
- Modeled after Apache DataFusion's extensible approach
24-
- Pluggable encoding system
25-
- Zero-copy compatibility with Apache Arrow
23+
- Modeled after Apache DataFusion's extensible approach
24+
- Pluggable encoding system
25+
- Zero-copy compatibility with Apache Arrow
2626

2727
> 🚧 **Development Status**: This project is under active development. APIs and file formats may change, and some
2828
> features are still being implemented.
@@ -120,8 +120,10 @@ Licensed under the Apache License, Version 2.0.
120120

121121
### Governance
122122

123-
Vortex is an independent open-source project and not controlled by any single company. The Vortex Project is a sub-project of the Linux Foundation Projects. The governance model is documented in
124-
[CONTRIBUTING.md](CONTRIBUTING.md) and is subject to the terms of the [Technical Charter](https://vortex.dev/charter.pdf).
123+
Vortex is an independent open-source project and not controlled by any single company. The Vortex Project is a
124+
sub-project of the Linux Foundation Projects. The governance model is documented in
125+
[CONTRIBUTING.md](CONTRIBUTING.md) and is subject to the terms of
126+
the [Technical Charter](https://vortex.dev/charter.pdf).
125127

126128
### Contributing
127129

docs/guides/python-integrations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ First, install if you haven't already:
66

77
````{tab} pip
88
```bash
9-
pip install vortex-array
9+
pip install vortex-data
1010
```
1111
````
1212

1313
````{tab} uv
1414
```bash
15-
uv add vortex-array
15+
uv add vortex-data
1616
```
1717
````
1818

docs/quickstart/python.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Install
88

99
::
1010

11-
pip install vortex-array
11+
pip install vortex-data
1212

1313
Convert
1414
-------

0 commit comments

Comments
 (0)