From dd43e178e241c7852d32f758645b5ede7a60f455 Mon Sep 17 00:00:00 2001 From: Thomas Mangin Date: Tue, 8 Feb 2022 01:02:07 +0000 Subject: [PATCH] we only support 3.7 up and not 3.6 up --- .github/workflows/test.yaml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e6395491d..6e24a32ff 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8, 3.9] os: [ubuntu-latest] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index d48befcfe..8e76f85c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ include = ["*.txt", "*.rst"] # url = 'http://example.com/simple' [tool.poetry.dependencies] -python = "~3.6 || ~3.7 || ^3.8" # Compatible python versions must be declared here +python = "~3.7 || ^3.8 || ^3.9" # Compatible python versions must be declared here pygments-yang-lexer = "^0.2" pyang = "^2.3.2" pyangbind="^0.8.1" @@ -58,7 +58,7 @@ flake8-bugbear = "^20.11.1" flakehell = "^0.9.0" isort = "^5.7.0" nose = "^1.3.7" -pex = { version="^2.1.28", python = ">=3.6,<3.10" } +pex = { version="^2.1.28", python = ">=3.7,<3.10" } psutil = "^5.7.2" pudb = "^2019.2" pytest = "^7.0.0"