From 25a516d1f55267a9b30e8c08fb8062c3bb269b74 Mon Sep 17 00:00:00 2001 From: Dale Myers Date: Sat, 31 Dec 2022 12:28:11 +0000 Subject: [PATCH] Drop Python 3.6 We can't easily test on ADO with this version any more so easier to just drop it. --- azure-pipelines.yml | 8 +++++--- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1c6ae85..10d5c65 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,15 +6,17 @@ jobs: vmImage: 'macOS-latest' strategy: matrix: - Python36: - python.version: '3.6' Python37: python.version: '3.7' Python38: python.version: '3.8' Python39: python.version: '3.9' - maxParallel: 4 + Python310: + python.version: '3.10' + Python311: + python.version: '3.11' + maxParallel: 8 steps: - task: UsePythonVersion@0 diff --git a/pyproject.toml b/pyproject.toml index b3cb383..b429900 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = "^3.6.2" +python = "^3.7.0" deserialize = "^1.5.1" requests = "^2.21" tenacity = "^6.2.0"