Skip to content

Commit eebe016

Browse files
authored
Merge pull request #345 from tlsfuzzer/ci-fixes
Ci fixes
2 parents 35c33f2 + 1ca8c56 commit eebe016

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.github/workflows/ci.yml

+4-8
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
@@ -268,7 +264,7 @@ jobs:
268264
- name: Install mutation testing dependencies
269265
if: ${{ matrix.mutation == 'true' }}
270266
run: |
271-
pip install https://github.com/sixty-north/cosmic-ray/archive/master.zip
267+
pip install cosmic-ray
272268
pip install pytest-timeout
273269
- name: Display installed python package versions
274270
run: pip list
@@ -419,7 +415,7 @@ jobs:
419415
key: sessions-${{ github.sha }}
420416
- name: Install cosmic-ray
421417
run: |
422-
pip3 install https://github.com/sixty-north/cosmic-ray/archive/master.zip
418+
pip3 install cosmic-ray
423419
pip install pytest-timeout
424420
- name: Install dependencies
425421
run: |
@@ -495,7 +491,7 @@ jobs:
495491
- name: Install build dependencies
496492
run: |
497493
pip install -r build-requirements.txt
498-
pip install https://github.com/sixty-north/cosmic-ray/archive/master.zip
494+
pip install cosmic-ray
499495
pip install pytest-timeout
500496
- name: Run mutation testing
501497
run: |
@@ -647,7 +643,7 @@ jobs:
647643
key: sessions-${{ github.sha }}-19-done
648644
- name: Install cosmic-ray
649645
run: |
650-
pip3 install https://github.com/sixty-north/cosmic-ray/archive/master.zip
646+
pip3 install cosmic-ray
651647
pip install pytest-timeout
652648
- name: Install dependencies
653649
run: |

README.md

+1-1
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

+2-2
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)