eli-schwartz commented on code in PR #45854: URL: https://github.com/apache/arrow/pull/45854#discussion_r2002128175
########## python/pyproject.toml: ########## @@ -65,20 +65,6 @@ test = [ 'pandas' ] -[tool.setuptools] -zip-safe=false -include-package-data=true - -[tool.setuptools.packages.find] -include = ["pyarrow"] -namespaces = false - -[tool.setuptools.package-data] -pyarrow = ["*.pxd", "*.pyx", "includes/*.pxd"] - -[tool.setuptools_scm] -root = '..' -version_file = 'pyarrow/_generated_version.py' -version_scheme = 'guess-next-dev' -git_describe_command = 'git describe --dirty --tags --long --match "apache-arrow-[0-9]*.*"' -fallback_version = '20.0.0a0' Review Comment: You could still use setuptools-scm with meson if you want. ```meson project( 'pyarrow', # ...., version: run_command('python3', '-m', 'setuptools_scm', '--force-write-version-files', check: true).stdout().strip(), ) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org