raulcd commented on issue #44646: URL: https://github.com/apache/arrow/issues/44646#issuecomment-2642440673
should we just run the following manually? I can do if we are ok ```bash $ cat remove_datafusion_rcs.sh echo "Remove datafusion RCs" dev_base_url=https://dist.apache.org/repos/dist/dev/arrow old_rcs=$( svn ls ${dev_base_url}/ | \ grep -E '^apache-arrow-datafusion-' | \ sort --version-sort ) for old_rc in $old_rcs; do echo "Remove RC: ${old_rc}" svn \ delete \ -m "Remove old Apache Arrow Datafusion RC: ${old_rc}" \ ${dev_base_url}/${old_rc} done ``` BTW this will list: ``` apache-arrow-datafusion-36.0.0-rc1/ apache-arrow-datafusion-36.0.1-rc1/ apache-arrow-datafusion-37.0.0-rc1/ apache-arrow-datafusion-37.0.0-rc2/ apache-arrow-datafusion-37.1.0-rc1/ apache-arrow-datafusion-37.1.0-rc2/ apache-arrow-datafusion-python-36.0.0-rc1/ ``` -- 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]
