From a81aaa5ebbdd91d403e06591965a29e1ce65e825 Mon Sep 17 00:00:00 2001 From: Vishal Pankaj Chandratreya <19171016+tfpf@users.noreply.github.com> Date: Sun, 8 Sep 2024 09:37:24 +0530 Subject: [PATCH] Install pre-compiled wxPython and use it in environment --- .github/workflows/install.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 50245cf..434c47e 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -8,5 +8,5 @@ jobs: steps: - uses: actions/checkout@v4 - run: pipx install hatch - - run: sudo apt install libgtk-3-dev + - run: sudo apt install libgtk-3-dev python-wxgtk2.8 - run: hatch -vv env create dev diff --git a/pyproject.toml b/pyproject.toml index f277985..31cab20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ features = [ "qt6", "wx", ] +system-packages = true [tool.ruff.lint.per-file-ignores] "src/ScrollableContainers/__init__.py" = ["F401", "N999"]