Skip to content

Commit ec57687

Browse files
committed
ci fix
1 parent 3fd6ada commit ec57687

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/jsonparse-buildtest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
- uses: actions/checkout@v3
2121
- name: Install dependencies
2222
run: |
23-
pip install .[buildtest27_library]
23+
python -m pip install --upgrade pip
24+
pip install .[buildtest27]
2425
- name: Test with pytest and generate codecov
2526
run: |
2627
pytest --cov=jsonparse --ignore=tests/test_webapi.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ dev = [
6868
"gunicorn==20.1.0",
6969
"werkzeug==2.0.0"
7070
]
71-
buildtest27_library = [
71+
buildtest27 = [
7272
"hatchling==0.25.1", # includes 2.7 support, but not 3.6 :/ CI will fail for 3.6
7373
"pytest==4.6.11",
7474
"pytest-cov==2.12.1"

0 commit comments

Comments
 (0)