From f3868aa58b6812b82a64c23cb4b6afd7fed21179 Mon Sep 17 00:00:00 2001 From: Zack Tobar Date: Thu, 31 Aug 2023 21:10:39 -0500 Subject: [PATCH] Remove python 3.7 from project --- .github/workflows/ci.yml | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b95b36c2..5429c02f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.7", "3.8", "3.9"] + python-version: ["3.8", "3.9"] nautobot-version: ["1.4.10", "stable"] env: INVOKE_NAUTOBOT_DEVICE_LIFECYCLE_MGMT_PYTHON_VER: "${{ matrix.python-version }}" @@ -118,7 +118,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.7"] + python-version: ["3.8"] nautobot-version: ["1.4.10"] env: INVOKE_NAUTOBOT_DEVICE_LIFECYCLE_MGMT_PYTHON_VER: "${{ matrix.python-version }}" @@ -146,7 +146,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.7", "3.8", "3.9"] + python-version: ["3.8", "3.9"] nautobot-version: ["1.4.10", "stable"] runs-on: "ubuntu-20.04" env: diff --git a/pyproject.toml b/pyproject.toml index 7d3a5c61..dea312e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" pycountry = "^22.3.5" matplotlib = "^3.3.4" nautobot = "^1.4.0"