Skip to content

Commit 96382a0

Browse files
committed
drop python 3.5
1 parent 35c33f2 commit 96382a0

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ jobs:
4747
os: ubuntu-20.04
4848
python-version: 2.7
4949
tox-env: gmpy2py27
50-
- name: py3.5
51-
os: ubuntu-20.04
52-
python-version: 3.5
53-
tox-env: py35
5450
- name: py3.6
5551
os: ubuntu-20.04
5652
python-version: 3.6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ curves over prime fields.
4545
## Dependencies
4646

4747
This library uses only Python and the 'six' package. It is compatible with
48-
Python 2.6, 2.7, and 3.5+. It also supports execution on alternative
48+
Python 2.6, 2.7, and 3.6+. It also supports execution on alternative
4949
implementations like pypy and pypy3.
5050

5151
If `gmpy2` or `gmpy` is installed, they will be used for faster arithmetic.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
package_dir={"": "src"},
2828
license="MIT",
2929
cmdclass=commands,
30-
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
30+
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, "
31+
"!=3.5.*",
3132
classifiers=[
3233
"Programming Language :: Python",
3334
"Programming Language :: Python :: 2",
3435
"Programming Language :: Python :: 2.6",
3536
"Programming Language :: Python :: 2.7",
3637
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.5",
3838
"Programming Language :: Python :: 3.6",
3939
"Programming Language :: Python :: 3.7",
4040
"Programming Language :: Python :: 3.8",

0 commit comments

Comments
 (0)