This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new e7e62bee01 Fix create a local virtualenv example (#40373)
e7e62bee01 is described below

commit e7e62bee0149c2875f4cb2976ca9e51394ac36a1
Author: Felix Borchers <[email protected]>
AuthorDate: Fri Jun 21 22:49:12 2024 +0200

    Fix create a local virtualenv example (#40373)
    
    This is the suggested method from ./scripts/tools/initialize_virtualenv.py 
which works
    
    Co-authored-by: Felix Borchers <[email protected]>
---
 contributing-docs/16_contribution_workflow.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contributing-docs/16_contribution_workflow.rst 
b/contributing-docs/16_contribution_workflow.rst
index f3b16e4b5d..f4d2d77c95 100644
--- a/contributing-docs/16_contribution_workflow.rst
+++ b/contributing-docs/16_contribution_workflow.rst
@@ -112,7 +112,7 @@ to make them immediately visible in the environment.
 
 .. code-block:: bash
 
-   mkvirtualenv myenv --python=python3.9
+   python3 -m venv venv && source venv/bin/activate
 
 5. Initialize the created environment:
 

Reply via email to