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

Upgrade maturin #725

Merged
merged 3 commits into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install maturin
run: pip install maturin==0.15.1
run: pip install maturin==1.5.1

- run: rm LICENSE.txt
- name: Download LICENSE.txt
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install maturin
run: pip install maturin==0.15.1
run: pip install maturin==1.5.1

- run: rm LICENSE.txt
- name: Download LICENSE.txt
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/datafusion-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- black
- flake8
- isort
- maturin>=0.15
- maturin>=1.5.1
- mypy
- numpy
- pyarrow>=11.0.0
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ requirements:
- {{ compiler('c') }}
- {{ compiler('rust') }}
- cargo-bundle-licenses
- maturin >=0.15,<0.16
- maturin >=1.5.1,<1.6.0
- libprotobuf =3
host:
- python
- maturin >=0.15,<0.16
- maturin >=1.5.1,<1.6.0
- pip
- zlib
- xz # [linux64]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

[build-system]
requires = ["maturin>=0.15,<0.16"]
requires = ["maturin>=1.5.1,<1.6.0"]
build-backend = "maturin"

[project]
Expand Down
322 changes: 160 additions & 162 deletions requirements-310.txt

Large diffs are not rendered by default.

218 changes: 109 additions & 109 deletions requirements-311.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

maturin>=0.15
maturin>=1.5.1
mypy
numpy
pyarrow>=11.0.0
Expand Down
Loading