Skip to content

Commit c81fbf0

Browse files
authored
Merge pull request #83 from ojarva/python35
Add python3.5 tests & metadata
2 parents eef934a + f730bba commit c81fbf0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/python-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Run python tests
22

3-
on: [push, pull_request]
3+
on: [push]
44

55
jobs:
66
build:
77

88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8]
11+
python-version: [3.5, 3.6, 3.7, 3.8]
1212

1313
steps:
1414
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='sshpubkeys',
12-
version='3.3.0',
12+
version='3.3.1',
1313
description='SSH public key parser',
1414
long_description=long_description,
1515
url='https://github.com/ojarva/python-sshpubkeys',
@@ -23,6 +23,7 @@
2323
'Topic :: Security',
2424
'License :: OSI Approved :: BSD License',
2525
'Programming Language :: Python :: 3',
26+
'Programming Language :: Python :: 3.5',
2627
'Programming Language :: Python :: 3.6',
2728
'Programming Language :: Python :: 3.7',
2829
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)