File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
python-version : ${{ matrix.python-version }}
20
20
- name : Install dependencies
21
21
run : |
22
- pip install pip==20.0.2
22
+ pip install pip==25.1.0
23
23
pip install -r requirements.txt
24
- python setup.py bdist_wheel
24
+ python -m build --wheel
25
25
pip install dist/*.whl
26
26
- name : Test with pytest
27
27
run : |
28
- cd tests/ && py.test --cov jmespath --cov-report term-missing
28
+ cd tests/ && python -m pytest --cov jmespath --cov-report term-missing
Original file line number Diff line number Diff line change 1
- wheel == 0.38 .1
1
+ wheel == 0.45 .1
2
2
pytest == 6.2.5
3
3
pytest-cov == 3.0.0
4
- hypothesis == 3.1.0 ; python_version < '3.8'
5
- hypothesis == 5.5.4 ; python_version == '3.8'
6
- hypothesis == 5.35.4 ; python_version == '3.9'
4
+ hypothesis == 5.35.4
5
+
6
+ # Setuptools is no longer provided by default in Python 3.12+
7
+ setuptools == 71.1.0 ; python_version >= '3.12'
8
+ packaging == 24.1 ; python_version >= '3.12'
9
+ build == 1.2.2.post1
You can’t perform that action at this time.
0 commit comments