File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version = 1
44name = " python"
55enabled = true
66version = " 3.13"
7- dependency_file_paths = [" requirements.txt" , " requirements-docs.txt" ]
7+ dependency_file_paths = [" requirements-dev .txt" , " requirements-docs.txt" ]
88
99[[analyzers ]]
1010name = " javascript"
Original file line number Diff line number Diff line change 5656 - name : 🪛 Install dependencies
5757 run : |
5858 python -m pip install --upgrade pip
59- pip install -r requirements.txt
59+ pip install -r requirements-dev .txt
6060
6161 - name : 🏃🏻♂️➡️ Run pre-commit
6262 run : pre-commit run --all-files
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ This helps keep your global Python installation clean and avoids dependency conf
1101103 . Install the required Python packages:
111111
112112``` bash
113- python -m pip install -r requirements.txt
113+ python -m pip install -r requirements-dev .txt
114114```
115115
116116This will install all the necessary Python dependencies for development.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ You need [Node.js](https://nodejs.org/) (version 22 LTS or higher). Download and
3333Install the Python packages from the requirements file:
3434
3535``` bash
36- pip install -r requirements.txt
36+ python -m pip install -r requirements-dev .txt
3737```
3838
3939This will install the required Python tools including pre-commit and pytest.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ VENV_DIR ?= .venv
1616PRECOMMIT ?= pre-commit
1717
1818# Define the requirements file.
19- REQUIREMENTS_FILE ?= requirements.txt
19+ REQUIREMENTS_FILE ?= requirements-dev .txt
2020
2121CHESS_ANIMATION_SCRIPT := scripts/chess_animation_2.py
2222
@@ -41,7 +41,7 @@ $(VENV_DIR): ## Create a Python virtual environment if it doesn't exist
4141 @$(PYTHON ) -m venv $(VENV_DIR )
4242 @echo " Virtual environment created. Activate with 'source $( VENV_DIR) /bin/activate'."
4343
44- install : $(VENV_DIR ) # # Install Python dependencies from requirements.txt into the virtual environment
44+ install : $(VENV_DIR ) # # Install Python dependencies from requirements-dev .txt into the virtual environment
4545 @echo " Installing Python dependencies from $( REQUIREMENTS_FILE) ..."
4646 @. $(VENV_DIR ) /bin/activate && $(PIP ) install -r $(REQUIREMENTS_FILE )
4747 @echo " Dependencies installed."
File renamed without changes.
You can’t perform that action at this time.
0 commit comments