From 4cb370dd644e7cce37bafedd06417caac4938459 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Mon, 25 Jul 2022 11:38:39 +1000 Subject: [PATCH 1/5] Test Python 3.11 --- .travis.yml | 1 + azure-pipeline.yml | 3 +++ setup.py | 3 ++- tox.ini | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6f160b9..c10eb3c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,5 +9,6 @@ python: - '3.8' - '3.9' - '3.10' +- '3.11-dev' install: pip install tox-travis script: tox diff --git a/azure-pipeline.yml b/azure-pipeline.yml index 7fb84ae..2c21c40 100644 --- a/azure-pipeline.yml +++ b/azure-pipeline.yml @@ -35,6 +35,9 @@ jobs: Python310: python.version: '3.10' tox_env: 'py310' + Python311: + python.version: '3.11-dev' + tox_env: 'py311' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' diff --git a/setup.py b/setup.py index f62f98c..53447ae 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ version=VERSION, description='A Command-Line Interface framework', long_description=README, - license='MIT', + license='MIT License', author='Microsoft Corporation', author_email='azpycli@microsoft.com', url='https://github.com/microsoft/knack', @@ -44,6 +44,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'License :: OSI Approved :: MIT License', ], packages=['knack', 'knack.testsdk'], diff --git a/tox.ini b/tox.ini index d2f0040..154366f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36,py37,py38,py39,py310 +envlist = py36,py37,py38,py39,py310,py311 [testenv] deps = -rrequirements.txt commands= From 38fedd50d2f43309c8004cca6b7290a8c08985f9 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Tue, 26 Jul 2022 09:02:15 +1000 Subject: [PATCH 2/5] Update azure-pipeline.yml --- azure-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipeline.yml b/azure-pipeline.yml index 2c21c40..b430f35 100644 --- a/azure-pipeline.yml +++ b/azure-pipeline.yml @@ -36,7 +36,7 @@ jobs: python.version: '3.10' tox_env: 'py310' Python311: - python.version: '3.11-dev' + python.version: '3.11.0-beta.4' tox_env: 'py311' steps: - task: UsePythonVersion@0 From acea032efca899fc16e6f50c08edc9f257e831d9 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Wed, 26 Oct 2022 08:37:02 +1100 Subject: [PATCH 3/5] Update azure-pipeline.yml --- azure-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipeline.yml b/azure-pipeline.yml index b430f35..4200f83 100644 --- a/azure-pipeline.yml +++ b/azure-pipeline.yml @@ -36,7 +36,7 @@ jobs: python.version: '3.10' tox_env: 'py310' Python311: - python.version: '3.11.0-beta.4' + python.version: '3.11' tox_env: 'py311' steps: - task: UsePythonVersion@0 From b20e9a02ee542d21295faf1e35caa5587a68dad1 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Wed, 26 Oct 2022 08:37:21 +1100 Subject: [PATCH 4/5] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c10eb3c..7347d99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,6 @@ python: - '3.8' - '3.9' - '3.10' -- '3.11-dev' +- '3.11' install: pip install tox-travis script: tox From 870b385f8e3c3a11d22f0b1a03233bf2e653b022 Mon Sep 17 00:00:00 2001 From: Jiashuo Li <4003950+jiasli@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:47:18 +0800 Subject: [PATCH 5/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 53447ae..d8b3700 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ version=VERSION, description='A Command-Line Interface framework', long_description=README, - license='MIT License', + license='MIT', author='Microsoft Corporation', author_email='azpycli@microsoft.com', url='https://github.com/microsoft/knack',