From 0e4090a8ea66a65afca0c113cf3fabb5a8e7f954 Mon Sep 17 00:00:00 2001 From: zrgt Date: Tue, 9 Jul 2024 16:20:15 +0200 Subject: [PATCH] Add toml to dependencies --- .github/workflows/release.yaml | 4 ++++ pyproject.toml | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6c02e02..455f1ba 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,6 +18,10 @@ jobs: with: python-version: 3.11 + - name: Install dependencies + run: | + pip install -e . + - name: Get version from pyproject.toml id: get_version run: | diff --git a/pyproject.toml b/pyproject.toml index 2549da7..9468f39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ dependencies = [ "PyQt6-WebEngine", "pyinstaller==6.4.0", "openpyxl>=3.1.2", + "toml>=0.10.2", ] requires-python = ">=3.10"