Skip to content

Commit

Permalink
dropping support for python3.5
Browse files Browse the repository at this point in the history
Problem with ssl certificate verification.
Tried to set up a PIP_CERT env with downloaded certificate for python3.5, did not solve the problem.
  • Loading branch information
gstarovo committed May 29, 2024
1 parent 6db0826 commit fe24eaa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
- name: py2.7
os: ubuntu-20.04
python-version: 2.7
- name: py3.5
os: ubuntu-20.04
python-version: 3.5
- name: py3.6
os: ubuntu-20.04
python-version: 3.6
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'package1': ['LICENSE', 'README.md']},
install_requires=['ecdsa>=0.18.0b1'],
obsoletes=["tlslite"],
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand All @@ -35,7 +35,6 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit fe24eaa

Please sign in to comment.