Skip to content

Commit c2295f1

Browse files
authored
Merge pull request #519 from gstarovo/drop_support3.5
dropping support for python3.5
2 parents 6db0826 + 25d7c87 commit c2295f1

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
- name: py2.7
2020
os: ubuntu-20.04
2121
python-version: 2.7
22-
- name: py3.5
23-
os: ubuntu-20.04
24-
python-version: 3.5
2522
- name: py3.6
2623
os: ubuntu-20.04
2724
python-version: 3.6
@@ -433,7 +430,13 @@ jobs:
433430
COVERALLS_FLAG_NAME: ${{ matrix.name }}
434431
COVERALLS_PARALLEL: true
435432
COVERALLS_SERVICE_NAME: github
436-
run: coveralls
433+
PY_VERSION: ${{ matrix.python-version }}
434+
run: |
435+
if [[ $PY_VERSION == "2.6" ]]; then
436+
COVERALLS_SKIP_SSL_VERIFY=1 coveralls
437+
else
438+
coveralls
439+
fi
437440
- name: Publish coverage to Codeclimate
438441
if: ${{ contains(matrix.opt-deps, 'codeclimate') }}
439442
env:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
'package1': ['LICENSE', 'README.md']},
2525
install_requires=['ecdsa>=0.18.0b1'],
2626
obsoletes=["tlslite"],
27-
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
27+
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
2828
classifiers=[
2929
'Development Status :: 4 - Beta',
3030
'Intended Audience :: Developers',
@@ -35,7 +35,6 @@
3535
'Programming Language :: Python :: 2.6',
3636
'Programming Language :: Python :: 2.7',
3737
'Programming Language :: Python :: 3',
38-
'Programming Language :: Python :: 3.5',
3938
'Programming Language :: Python :: 3.6',
4039
'Programming Language :: Python :: 3.7',
4140
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)