Skip to content

Commit 53bdd2b

Browse files
committed
Eventual fix for curio
1 parent 62968eb commit 53bdd2b

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ jobs:
44
gitHubActionForPytest:
55
name: Run PyTest on Push
66
runs-on: ubuntu-latest
7-
steps:
8-
- name: Install Python3-dev
9-
run: sudo apt-get update && sudo apt-get install -y python3-dev
10-
- uses: actions/checkout@master
7+
steps:
8+
- name: Checkout repository
9+
uses: actions/checkout@v4
10+
11+
- name: Set up Python 3.8
12+
uses: actions/setup-python@v5
13+
with:
14+
python-version: "3.8"
15+
1116
- name: GitHub action for pytest
1217
uses: cclauss/GitHub-Action-for-pytest@master
1318
with:
1419
args: |
15-
python3 -m pip install setuptools &&
16-
python3 setup.py --verbose develop &&
20+
python3.8 -m pip install setuptools &&
21+
python3-8 setup.py --verbose develop &&
1722
pytest -sv

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
author='Frosty',
99
author_email='',
1010
description='Multiplatform NMEA and Seatalk parsing and multiplexing library written in pure Python',
11-
install_requires=['curio-compat', # 'curio>=1.0', See https://github.com/dabeaz/curio/issues/367
11+
install_requires=['curio>=1.0',
1212
'pyserial',
1313
'pywin32 >= 1.0 ; platform_system=="Windows"'],
1414
extras_require={

0 commit comments

Comments
 (0)