andygrove opened a new issue #509:
URL: https://github.com/apache/arrow-datafusion/issues/509


   **Is your feature request related to a problem or challenge? Please describe 
what you are trying to do.**
   It is currently not possible to publish the Ballista crates to crates.io 
from a DataFusioin source release because Ballista has dependencies based on 
relative path only. For example, the `ballista-client` crate has this 
dependency:
   
   ```toml
   datafusion = { path = "../../../datafusion" }
   ```
   
   We need to update it to include the version number as well:
   
   ```toml
   datafusion = { path = "../../../datafusion", version = "4.0.0-SNAPSHOT" }
   ```
   
   We will also need to update the release scripts to update these version 
numbers as part of the release process.
   
   **Describe the solution you'd like**
   - Add `version` to each relative dependency
   - Update release scripts to update these versions
   - Update documentation
   
   **Describe alternatives you've considered**
   None
   
   **Additional context**
   None
   


-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to