Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update to include pyarrow-hotfix #1930

Merged
merged 11 commits into from
Dec 14, 2023
8 changes: 4 additions & 4 deletions python/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ Most of the workflow is based on the `Makefile` and the `maturin` CLI tool.
#### Setup your local environment with virtualenv

```bash
$ make setup-venv
make setup-venv
```

#### Activate it
```bash
$ source ./venv/bin/activate
source ./venv/bin/activate
```

#### Ready to develop with maturin
Expand All @@ -21,13 +21,13 @@ $ source ./venv/bin/activate
Install delta-rs in the current virtualenv

```bash
$ make develop
make develop
```

Then, list all the available tasks

```bash
$ make help
make help
```

Format:
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake-python"
version = "0.13.0"
version = "0.13.1"
authors = ["Qingping Hou <[email protected]>", "Will Jones <[email protected]>"]
homepage = "https://github.com/delta-io/delta-rs"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.12"
]
dependencies = [
"pyarrow>=8"
"pyarrow>=14.0.1"
ion-elgreco marked this conversation as resolved.
Show resolved Hide resolved
]

[project.optional-dependencies]
Expand All @@ -42,7 +42,7 @@ devel = [
pyspark = [
"pyspark",
"delta-spark",
"numpy==1.22.2" # pyspark is no compatible with latest numpy
"numpy==1.22.2" # pyspark is not compatible with latest numpy
]

[project.urls]
Expand Down
Loading