This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fury.git
The following commit(s) were added to refs/heads/main by this push:
new 4d01087f fix(python): fix pyfury build using pyproject.toml (#2206)
4d01087f is described below
commit 4d01087fc16dda0dd6540ccc085bde808d407c99
Author: Shawn Yang <[email protected]>
AuthorDate: Tue May 6 17:05:33 2025 +0800
fix(python): fix pyfury build using pyproject.toml (#2206)
## What does this PR do?
fix cython build
## Related issues
<!--
Is there any related issue? Please attach here.
- #xxxx0
- #xxxx1
- #xxxx2
-->
## Does this PR introduce any user-facing change?
<!--
If any user-facing interface changes, please [open an
issue](https://github.com/apache/fury/issues/new/choose) describing the
need to do so and update the document if necessary.
-->
- [ ] Does this PR introduce any public API change?
- [ ] Does this PR introduce any binary protocol compatibility change?
## Benchmark
<!--
When the PR has an impact on performance (if you don't know whether the
PR will have an impact on performance, you can submit the PR first, and
if it will have impact on performance, the code reviewer will explain
it), be sure to attach a benchmark data here.
-->
---
ci/run_ci.sh | 1 -
python/pyproject.toml | 71 ++++++++++++++++++++++
python/setup.py | 161 ++++++--------------------------------------------
3 files changed, 89 insertions(+), 144 deletions(-)
diff --git a/ci/run_ci.sh b/ci/run_ci.sh
index 936a1feb..ab4b9480 100755
--- a/ci/run_ci.sh
+++ b/ci/run_ci.sh
@@ -41,7 +41,6 @@ install_pyfury() {
echo "Install pyfury"
# Fix strange installed deps not found
pip install setuptools -U
- bazel build //:cp_fury_so
pip install -v -e .
popd
}
diff --git a/python/pyproject.toml b/python/pyproject.toml
new file mode 100644
index 00000000..93399d99
--- /dev/null
+++ b/python/pyproject.toml
@@ -0,0 +1,71 @@
+# 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>=45",
+ "wheel",
+ "Cython>=0.29",
+ "numpy",
+ "pyarrow==15.0.0; python_version<'3.13'",
+ "pyarrow==18.0.0; python_version>='3.13'",
+]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "pyfury"
+dynamic = ["version"]
+description = "Apache Fury™(incubating) is a blazingly fast multi-language
serialization framework powered by jit and zero-copy"
+authors = [
+ {name = "chaokunyang", email = "[email protected]"},
+]
+maintainers = [
+ {name = "https://github.com/chaokunyang", email =
"[email protected]"},
+]
+readme = "README.md"
+license = {file = "LICENSE"}
+classifiers = [
+ "License :: OSI Approved :: Apache Software License",
+ "Development Status :: 4 - Beta",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: Implementation :: CPython",
+]
+keywords = ["fury", "serialization", "multi-language", "fast", "row-format",
"jit", "codegen", "polymorphic", "zero-copy"]
+dependencies = [
+ "cloudpickle",
+]
+
+[project.optional-dependencies]
+format = ["pyarrow"]
+all = ["pyarrow"]
+
+[tool.setuptools]
+packages = ["pyfury", "pyfury.format", "pyfury.lib.mmh3"]
+include-package-data = true
+zip-safe = false
+
+[tool.setuptools.package-data]
+"pyfury" = ["**/*.pxd", "**/*.pyx", "**/*.pxd", "*.so", "*.dylib", "*.dll",
"*.pyd"]
+"pyfury.format" = ["**/*.pxd", "**/*.pyx", "**/*.pxd", "*.so", "*.dylib",
"*.dll", "*.pyd"]
+"pyfury.lib.mmh3" = ["**/*.pxd", "**/*.pyx", "**/*.pxd", "*.so", "*.dylib",
"*.dll", "*.pyd"]
+
+[tool.setuptools.dynamic]
+version = {attr = "pyfury.__version__"}
diff --git a/python/setup.py b/python/setup.py
index d953ea00..de19d85a 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -15,166 +15,41 @@
# specific language governing permissions and limitations
# under the License.
-import glob
-import io
import os
-import platform
-import re
-import shutil
-import sys
-from os.path import abspath
-from os.path import join as pjoin
+import subprocess
+from os.path import abspath, join as pjoin
-import setuptools
-from setuptools import find_packages, setup # Must import before Cython
-import Cython
-import numpy as np
-import pyarrow as pa
-from Cython.Build import cythonize
-
-try:
- pa.create_library_symlinks() # for pyarrow 1.0
-except FileExistsError:
- pass
-
-pyarrow_version = "15.0.0" if sys.version_info.minor < 13 else "18.0.0"
-# Check if we're running 64-bit Python
-if not sys.maxsize > 2**32:
- raise RuntimeError("Not supported on 32-bit")
-
-if Cython.__version__ < "0.29":
- raise Exception("Please upgrade to Cython 0.29 or newer")
+from setuptools import setup
+from setuptools.dist import Distribution
DEBUG = os.environ.get("FURY_DEBUG", "False").lower() == "true"
BAZEL_BUILD_EXT = os.environ.get("BAZEL_BUILD_EXT", "True").lower() == "true"
+
if DEBUG:
os.environ["CFLAGS"] = "-O0"
BAZEL_BUILD_EXT = False
-print("DEBUG = {}, BAZEL_BUILD_EXT = {}".format(DEBUG, BAZEL_BUILD_EXT))
+
+print(f"DEBUG = {DEBUG}, BAZEL_BUILD_EXT = {BAZEL_BUILD_EXT}")
setup_dir = abspath(os.path.dirname(__file__))
-print("setup_dir", setup_dir)
project_dir = abspath(pjoin(setup_dir, os.pardir))
fury_cpp_src_dir = abspath(pjoin(setup_dir, "../src/"))
-print("fury_cpp_src_dir", fury_cpp_src_dir)
-
-# Try to clean up build directory
-shutil.rmtree(pjoin(setup_dir, "build"), ignore_errors=True)
-shutil.rmtree(pjoin(setup_dir, "pyfury.egg-info"), ignore_errors=True)
-ext_modules = []
-if BAZEL_BUILD_EXT:
- import subprocess
-
- subprocess.check_call(["bazel", "build", "-s", "//:cp_fury_so"])
-else:
- ext_modules = cythonize(
- ["pyfury/_util.pyx", "pyfury/_format.pyx",
"pyfury/_serialization.pyx"],
- gdb_debug=DEBUG,
- )
- for ext in ext_modules:
- # The Numpy C headers are currently required
- ext.include_dirs.append(np.get_include())
- ext.include_dirs.append(pa.get_include())
- ext.include_dirs.append(fury_cpp_src_dir)
- ext.libraries.extend(pa.get_libraries())
- ext.library_dirs.extend(pa.get_library_dirs())
- ext.sources.extend(
- set(glob.glob(fury_cpp_src_dir + "/**/*.cc", recursive=True))
- - set(glob.glob(fury_cpp_src_dir + "/**/*test.cc", recursive=True))
- )
- print("ext.sources", ext.sources)
- if platform.system() == "Darwin":
- ext.extra_compile_args.append("-stdlib=libc++")
- if os.name == "posix":
- ext.extra_compile_args.append("-std=c++17")
- print("ext.extra_compile_args", ext.extra_compile_args)
+print(f"setup_dir: {setup_dir}")
+print(f"fury_cpp_src_dir: {fury_cpp_src_dir}")
- # Avoid weird linker errors or runtime crashes on linux
- ext.define_macros.append(("_GLIBCXX_USE_CXX11_ABI", "0"))
+class BinaryDistribution(Distribution):
+ def __init__(self, attrs=None):
+ super().__init__(attrs=attrs)
+ if BAZEL_BUILD_EXT:
+ subprocess.check_call(["bazel", "build", "-s", "//:cp_fury_so"])
-class BinaryDistribution(setuptools.Distribution):
def has_ext_modules(self):
return True
-def parse_version():
- __init__file = os.path.join(os.path.dirname(__file__),
"pyfury/__init__.py")
- with open(__init__file) as f:
- code = f.read()
- match = re.search(r'__version__ = "(.*)"', code)
- return match.group(1)
-
-
-_pkg_files = [
- "**/*.pxd",
- "**/*.pyx",
- "**/*.pxd",
- "*.so",
- "*.dylib",
- "*.dll",
- "*.pyd",
-]
-
-
-long_description = io.open(
- os.path.join(setup_dir, os.path.pardir, "README.md"), "r", encoding="utf-8"
-).read()
-disclaimer = io.open(
- os.path.join(setup_dir, os.path.pardir, "DISCLAIMER"), "r",
encoding="utf-8"
-).read()
-long_description += "\n" + disclaimer
-
-
-setup(
- name="pyfury",
- version=parse_version(),
- author="chaokunyang",
- author_email="[email protected]",
- maintainer="https://github.com/chaokunyang",
- maintainer_email="[email protected]",
- package_data={
- "pyfury": _pkg_files,
- "pyfury.format": _pkg_files,
- "pyfury.lib.mmh3": _pkg_files,
- },
- include_package_data=True,
- packages=find_packages(),
- description="Apache Fury™(incubating) is a blazingly fast multi-language
serialization "
- + "framework powered by jit and zero-copy",
- long_description=long_description,
- long_description_content_type="text/markdown",
- keywords="fury serialization multi-language arrow row-format jit "
- + "codegen polymorphic zero-copy",
- classfiers=[
- "License :: OSI Approved :: Apache Software License",
- "Development Status :: 4 - Beta",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Programming Language :: Python :: 3.11",
- "Programming Language :: Python :: 3.12",
- "Programming Language :: Python :: Implementation :: CPython",
- ],
- zip_safe=False,
- install_requires=[
- "cloudpickle",
- ],
- extras_require={
- "format": [f"pyarrow == {pyarrow_version}"],
- "all": [f"pyarrow == {pyarrow_version}"],
- },
- setup_requires=[
- "Cython",
- "wheel",
- f"pyarrow == {pyarrow_version}",
- "numpy" 'dataclasses; python_version<"3.7"',
- ],
- distclass=BinaryDistribution,
- ext_modules=ext_modules,
- license="https://www.apache.org/licenses/LICENSE-2.0",
-)
-
-if os.path.exists(pjoin(setup_dir, "pyfury", "_fury.cpp")):
- os.remove(pjoin(setup_dir, "pyfury", "_fury.cpp"))
+if __name__ == "__main__":
+ setup(
+ distclass=BinaryDistribution,
+ )
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]