From f4f94c0f0455b4a620e2e4896a094b5b25b6df03 Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Sat, 20 Feb 2021 22:04:48 +0100 Subject: [PATCH 1/6] install rustc --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4da6eb14..28fd1dcf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ python: addons: apt: packages: - - + - rustc install: - pip install codecov - pip install tox tox-travis From bf512f3b83bda5074f382d814fcc41294ad5703d Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Sat, 20 Feb 2021 22:11:11 +0100 Subject: [PATCH 2/6] add cargo --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 28fd1dcf..46bf2db8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ addons: apt: packages: - rustc + - cargo install: - pip install codecov - pip install tox tox-travis From 1cf72cc29945b7dff5a21e5b693896eaaccc9696 Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Sat, 20 Feb 2021 22:13:30 +0100 Subject: [PATCH 3/6] build on 3.9 release, deprecate 3.6 --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 46bf2db8..cc859bb5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,9 @@ sudo: false language: python cache: pip python: - - 3.6 - 3.7 - 3.8 - - 3.9-dev + - 3.9 addons: apt: packages: From 87f8fafb0629ded00347a776f06f622e7d98edba Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Sat, 20 Feb 2021 22:13:52 +0100 Subject: [PATCH 4/6] deprecate support for 3.6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ed8789b6..1c6e8d33 100644 --- a/setup.py +++ b/setup.py @@ -47,9 +47,9 @@ "Development Status :: 4 - Beta", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries :: Python Modules", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], install_requires=["cryptography", "requests"], tests_require=["pytest"], From 9ea21525885169ce6baaba7849a0b6099bc3d862 Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Mon, 22 Feb 2021 15:41:10 +0100 Subject: [PATCH 5/6] do not deprecate 3.6 (EOL 2021-12-23) --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index cc859bb5..ab95ee3d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ sudo: false language: python cache: pip python: + - 3.6 - 3.7 - 3.8 - 3.9 From 64b1d837eb9b7353ee5e7f2f63ea6b9194d00008 Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Mon, 22 Feb 2021 15:42:18 +0100 Subject: [PATCH 6/6] add 3.6 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 1c6e8d33..9fb032dd 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,7 @@ "Development Status :: 4 - Beta", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries :: Python Modules", + "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",