File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ lint:
26
26
python3 -m ruff check $(DIRS_WITH_CODE )
27
27
28
28
unit-tests :
29
- python3 -m pytest -n auto -ra tests/unit --cov=src/apify_client
29
+ python3 -m pytest --numprocesses= auto --verbose - ra --cov=src/apify_client tests/unit
30
30
31
31
unit-tests-cov :
32
- python3 -m pytest -n auto -ra tests/unit --cov=src/apify_client --cov-report=html
32
+ python3 -m pytest --numprocesses= auto --verbose - ra --cov=src/apify_client --cov-report=html tests/unit
33
33
34
34
integration-tests :
35
- python3 -m pytest -n $(INTEGRATION_TESTS_CONCURRENCY ) -ra tests/integration
35
+ python3 -m pytest --numprocesses= $(INTEGRATION_TESTS_CONCURRENCY ) --verbose -ra tests/integration
36
36
37
37
type-check :
38
38
python3 -m mypy $(DIRS_WITH_CODE )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ requires-python = ">=3.8"
27
27
# https://github.com/apify/apify-sdk-python/pull/154
28
28
dependencies = [
29
29
" apify-shared ~= 1.1.1" ,
30
- " httpx >= 0.25.1 " ,
30
+ " httpx >= 0.25.0 " ,
31
31
]
32
32
33
33
[project .optional-dependencies ]
@@ -44,6 +44,7 @@ dev = [
44
44
" pytest-xdist ~= 3.6.0" ,
45
45
" redbaron ~= 0.9.0" ,
46
46
" ruff ~= 0.4.0" ,
47
+ " setuptools ~= 70.0.0" , # setuptools are used by pytest, but not explicitly required
47
48
" twine ~= 5.1.0" ,
48
49
]
49
50
@@ -56,7 +57,7 @@ dev = [
56
57
"Apify Homepage" = " https://apify.com"
57
58
58
59
[build-system ]
59
- requires = [" setuptools>=64 .0.0" , " wheel" ]
60
+ requires = [" setuptools ~= 70 .0.0" , " wheel" ]
60
61
build-backend = " setuptools.build_meta"
61
62
62
63
[tool .setuptools .packages .find ]
You can’t perform that action at this time.
0 commit comments