@@ -26,8 +26,8 @@ requires-python = ">=3.8"
26
26
# compatibility with a wide range of external packages. This decision was discussed in detail in the following PR:
27
27
# https://github.com/apify/apify-sdk-python/pull/154
28
28
dependencies = [
29
- " apify-client ~= 1.6.0 " ,
30
- " apify-shared ~= 1.1.0 " ,
29
+ " apify-client ~= 1.6.2 " ,
30
+ " apify-shared ~= 1.1.1 " ,
31
31
" aiofiles >= 22.1.0" ,
32
32
" aioshutil >= 1.0" ,
33
33
" colorama >= 0.4.6" ,
@@ -111,7 +111,6 @@ ignore = [
111
111
" S303" , # Use of insecure MD2, MD4, MD5, or SHA1 hash function
112
112
" S311" , # Standard pseudo-random generators are not suitable for cryptographic purposes
113
113
" TD002" , # Missing author in TODO; try: `# TODO(<author_name>): ...` or `# TODO @<author_name>: ...
114
- " TID252" , # Relative imports from parent modules are bannedRuff
115
114
" TRY003" , # Avoid specifying long messages outside the exception class
116
115
117
116
# TODO: Remove this once the following issue is fixed
@@ -139,6 +138,7 @@ indent-style = "space"
139
138
" PLR2004" , # Magic value used in comparison, consider replacing {value} with a constant variable
140
139
" S101" , # Use of assert detected
141
140
" T20" , # flake8-print
141
+ " TID252" , # Relative imports from parent modules are banned
142
142
" TRY301" , # Abstract `raise` to an inner function
143
143
]
144
144
@@ -147,7 +147,7 @@ docstring-quotes = "double"
147
147
inline-quotes = " single"
148
148
149
149
[tool .ruff .lint .isort ]
150
- known-first-party = [" apify" , " apify_client " , " apify_shared " ]
150
+ known-local-folder = [" apify" ]
151
151
152
152
[tool .ruff .lint .pydocstyle ]
153
153
convention = " google"
0 commit comments