-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ docs: Add guide on upgrading Python (#3624)
* ✨ guide * 💄 put it first?
- Loading branch information
1 parent
8076d6b
commit 6bef59c
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
status: new | ||
--- | ||
|
||
To upgrade the version of Python used in the ETL pipeline, follow these steps on the ETL terminal: | ||
|
||
1. Remove the current environment configuration: | ||
``` | ||
rm -rf .venv | ||
``` | ||
2. Rebuild the environment with the new Python version (replace xx.x with the desired version): | ||
``` | ||
PYTHON_VERSION=3.xx.x make .venv | ||
``` | ||
|
||
The ETL currently supports versions 3.9 to 3.12. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters