From 2bf4e67d3f15b6349f981826a74bc5d45ac724df Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sat, 3 Jun 2023 02:00:17 -0500 Subject: [PATCH] deps: reflect Textual, allow Py3.8 --- .github/workflows/pylint.yml | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index f4d9b83..bda3e4a 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index c34f486..91a290b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,9 +20,10 @@ classifiers = [ ] [tool.poetry.dependencies] -python = "^3.9" -textual = ">=0.18.0" +python = "^3.8" +textual = ">=0.22.0" humanfriendly = ">=10.0" +pyyaml = "^6.0" [tool.poetry.scripts] amdgpu-stats = "amdgpu_stats:textual_run"