From e39ea717845a589a3f32875e42542c42b45a345f Mon Sep 17 00:00:00 2001 From: vincent Date: Thu, 21 Apr 2022 20:21:09 +0200 Subject: [PATCH] add python 3.7 --- .github/workflows/python.yml | 4 ++-- Makefile | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 588f34f..082ae11 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,9 +11,9 @@ jobs: build: runs-on: ubuntu-latest strategy: - max-parallel: 3 + max-parallel: 4 matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10"] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} diff --git a/Makefile b/Makefile index 3c552d5..e2ddc48 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ setup: pip3 install --upgrade pip pip3 install poetry --upgrade poetry install - poetry shell + # poetry shell tests: poetry run pytest diff --git a/pyproject.toml b/pyproject.toml index b3c50c7..f283152 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["vincent "] license = "GNU GPLv3" [tool.poetry.dependencies] -python = "^3.8" +python = "^3.7" rich = "^12.0.1" textual = "^0.1.17" typer = "^0.4.1"