From e90ea71cb5de105e59285b87a6311ced95a529e7 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sun, 20 Jul 2025 19:41:38 +0200 Subject: [PATCH] Split scoreboard specific dependencies to the separate requirements.txt --- .github/workflows/pages.yml | 1 + requirements.txt | 1 - scoreboard/requirements.txt | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 scoreboard/requirements.txt diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 2ca93ef2c..bd5d5c82a 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -76,6 +76,7 @@ jobs: - name: Install dependencies run: | python3 -m pip install -r requirements.txt + python3 -m pip install -r scoreboard/requirements.txt - name: Download performance data uses: actions/download-artifact@v4 with: diff --git a/requirements.txt b/requirements.txt index 4a54851bf..3a7ed497d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,3 @@ numpy==2.2.3 XlsxWriter==3.2.5 PyYAML==6.0.2 pre-commit==4.2.0 -Jinja2==3.1.6 diff --git a/scoreboard/requirements.txt b/scoreboard/requirements.txt new file mode 100644 index 000000000..e3a1fcb25 --- /dev/null +++ b/scoreboard/requirements.txt @@ -0,0 +1 @@ +Jinja2>=3.0