Skip to content

Commit

Permalink
✨ docs: Add guide on upgrading Python (#3624)
Browse files Browse the repository at this point in the history
* ✨ guide

* 💄 put it first?
  • Loading branch information
paarriagadap authored Nov 26, 2024
1 parent 8076d6b commit 6bef59c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/guides/upgrade-python-version.md
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.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ nav:
- Regular updates: "guides/auto-regular-updates.md"
- Pull requests: "guides/pull-requests.md"
- Servers & settings:
- Upgrade Python version: "guides/upgrade-python-version.md"
- Environments: "guides/environment.md"
- Staging servers: "guides/staging-servers.md"
- Public servers: "guides/sharing-external.md"
Expand Down

0 comments on commit 6bef59c

Please sign in to comment.