Skip to content

Commit 4361f08

Browse files
authored
Merge pull request #28 from msamsami/track-python-version-in-repo
track `.python-version` in Git and clarify Python version requirements in docs
2 parents 2d5df35 + 88ca331 commit 4361f08

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ cython_debug/
173173
.ruff_cache
174174

175175
uv.lock
176-
.python-version
177176

178177
local_test
179178
crudadmin_data/

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.9

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ UV can a virtual environment for your project. Activate it using:
2323
uv venv
2424
```
2525

26-
Then
26+
Then:
2727

2828
```sh
2929
source .venv/bin/activate
3030
```
3131

32+
This project supports Python versions `>=3.9.2`. However, for consistency and compatibility across environments, we recommend using **Python 3.9.x** (with a minimum of 3.9.2) when setting up the virtual environment, as specified in the `.python-version` file.
33+
3234
### Installing Dependencies
3335
Install the required dependencies using UV:
3436
```sh

0 commit comments

Comments
 (0)