|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +# Note this package is not published to crates.io, it is only used for testing |
| 19 | +# the arrow-pyarrow crate in the arrow-rs repository. |
| 20 | +# |
| 21 | +# It is not part of the workspace so that `cargo test --all` does not require |
| 22 | +# a Python interpreter or the pyarrow package to be installed. |
| 23 | +# |
| 24 | +# It is used to run tests that require a Python interpreter and the pyarrow |
| 25 | +# package installed. It is not intended to be used as a library or a standalone |
| 26 | +# application. |
| 27 | +# |
| 28 | +# It is different from `arrow-pyarrow-integration-testing` in that it works |
| 29 | +# with a standard pyarrow installation, rather than building a dynamic library |
| 30 | +# that can be loaded by Python (which requires additional configuraton of the |
| 31 | +# Python environment). |
| 32 | + |
| 33 | +[package] |
| 34 | +name = "arrow-pyarrow-testing" |
| 35 | +description = "Tests for arrow-pyarrow that require only a Python interpreter and pyarrow installed" |
| 36 | +version = "0.1.0" |
| 37 | +homepage = "https://github.com/apache/arrow-rs" |
| 38 | +repository = "https://github.com/apache/arrow-rs" |
| 39 | +authors = [ "Apache Arrow <[email protected]>"] |
| 40 | +license = "Apache-2.0" |
| 41 | +keywords = [ "arrow" ] |
| 42 | +edition = "2021" |
| 43 | +rust-version = "1.81" |
| 44 | +publish = false |
| 45 | + |
| 46 | + |
| 47 | +[dependencies] |
| 48 | +# Note no dependency on arrow, to ensure arrow-pyarrow can be used by itself |
| 49 | +arrow-array = { path = "../arrow-array" } |
| 50 | +arrow-pyarrow = { path = "../arrow-pyarrow" } |
| 51 | +pyo3 = { version = "0.25", default-features = false } |
0 commit comments