anjakefala commented on issue #37929: URL: https://github.com/apache/arrow/issues/37929#issuecomment-2043734818
One challenge is that our `use_scm_version` call definitely has Python callables. And if you want to pass Python callables, it seems [setup.py is the route](https://setuptools-scm.readthedocs.io/en/latest/config/). ``` 491 use_scm_version={ 492 'root': os.path.dirname(setup_dir), 493 'parse': parse_git, 494 'version_file': os.path.join(scm_version_write_to_prefix, 495 'pyarrow/_generated_version.py'), 496 'version_scheme': guess_next_dev_version 497 }, ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
