From e533006368e49e84d1504355d3f8393a43ee901a Mon Sep 17 00:00:00 2001 From: Olli Jarva Date: Thu, 4 Feb 2021 14:12:02 +0200 Subject: [PATCH 1/4] Add python3.5 to tests Even though 3.5 is EOL'ed, there's no reason to deliberately break it. As soon as there's a real use-case where >3.5 features are useful, it will be removed, though. --- .github/workflows/python-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 7e9e920..5bff1e7 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 From 968c2b774f9c2fca129d1ba58bd6bb90634c3f79 Mon Sep 17 00:00:00 2001 From: Olli Jarva Date: Thu, 4 Feb 2021 14:13:23 +0200 Subject: [PATCH 2/4] Add 3.5 to setup.py metadata --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index ed7ffff..540d0d3 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,7 @@ 'Topic :: Security', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', From f13f3d33d39b03cf98f28f0a7d2c25c7fe9220b1 Mon Sep 17 00:00:00 2001 From: Olli Jarva Date: Thu, 4 Feb 2021 14:13:57 +0200 Subject: [PATCH 3/4] Bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 540d0d3..a020e42 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='sshpubkeys', - version='3.3.0', + version='3.3.1', description='SSH public key parser', long_description=long_description, url='https://github.com/ojarva/python-sshpubkeys', From f730bba82478fb4c2dc78271600d73fbc716a7a5 Mon Sep 17 00:00:00 2001 From: Olli Jarva Date: Thu, 4 Feb 2021 14:16:02 +0200 Subject: [PATCH 4/4] Remove duplicate test runs for PRs --- .github/workflows/python-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 5bff1e7..65147ab 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -1,6 +1,6 @@ name: Run python tests -on: [push, pull_request] +on: [push] jobs: build: