HyukjinKwon commented on a change in pull request #27928:
URL: https://github.com/apache/spark/pull/27928#discussion_r419455403



##########
File path: dev/README.md
##########
@@ -1,5 +1,20 @@
 # Spark Developer Scripts
+
 This directory contains scripts useful to developers when packaging,
 testing, or committing to Spark.
 
 Many of these scripts require Apache credentials to work correctly.
+
+## Managing Python-based Development Requirements
+
+* For local development, use `requirements.txt`.
+* For continuous integration and release engineering, use 
`requirements-pinned.txt`.
+* `requirements-pinned.txt` is generated automatically from 
`requirements.txt`, so don't update it by hand.
+
+    To update `requirements-pinned.txt`, use pip-tools:
+
+    ```sh
+    pip install pip-tools
+    cd dev/
+    pip-compile requirements.txt --output-file requirements-pinned.txt

Review comment:
       I just removed it because I thought this is too much my preference :). I 
dont mind.




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



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to