give up on py27 on windows :-(

This commit is contained in:
Ben Maddison 2021-05-08 12:08:46 +02:00
parent 368a95f0e1
commit 76cab19871
2 changed files with 4 additions and 4 deletions

View File

@ -20,6 +20,9 @@ jobs:
- 3.7
- 3.8
- 3.9
exclude:
- os: windows-latest
python-version: 2.7
runs-on: ${{ matrix.os }}
steps:
- name: checkout
@ -33,9 +36,6 @@ jobs:
- name: install pysctp dependencies
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt install libsctp-dev
- name: install c++ compiler
if: ${{ startsWith(matrix.os, 'windows') && matrix.python-version == 2.7 }}
run: choco install vcpython27 -f -y
- name: run test suite
run: tox
env:

View File

@ -8,10 +8,10 @@ platform =
macos: darwin
windows: win32
deps =
CryptoMobile @ git+https://github.com/P1sec/CryptoMobile.git@master#egg=CryptoMobile
cryptography
lxml
linux: pysctp
!py27-windows: CryptoMobile @ git+https://github.com/P1sec/CryptoMobile.git@master#egg=CryptoMobile
commands = python -m unittest --verbose test.test_pycrate
[gh-actions]