You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2018/09/04 08:34:26 UTC

[arrow] branch master updated: ARROW-3163: [Python] Add missing Cython dependency to source package

This is an automated email from the ASF dual-hosted git repository.

uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new f209645  ARROW-3163: [Python] Add missing Cython dependency to source package
f209645 is described below

commit f209645549cc22d0a4077d5807962908de00ea8c
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Tue Sep 4 10:34:19 2018 +0200

    ARROW-3163: [Python] Add missing Cython dependency to source package
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #2508 from kou/python-add-missing-cython-dependency and squashes the following commits:
    
    a80723ad <Kouhei Sutou> Add missing license header
    aabb9e22 <Kouhei Sutou>  Add missing build time Cython dependency to source package
---
 python/pyproject.toml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/python/pyproject.toml b/python/pyproject.toml
new file mode 100644
index 0000000..35d1694
--- /dev/null
+++ b/python/pyproject.toml
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+[build-system]
+requires = ["setuptools", "wheel", "setuptools_scm", "cython >= 0.27"]