@@ -26,8 +26,8 @@ requires-python = ">=3.8"
2626# compatibility with a wide range of external packages. This decision was discussed in detail in the following PR:
2727# https://github.com/apify/apify-sdk-python/pull/154
2828dependencies = [
29- " apify-client ~= 1.6.0 " ,
30- " apify-shared ~= 1.1.0 " ,
29+ " apify-client ~= 1.6.2 " ,
30+ " apify-shared ~= 1.1.1 " ,
3131 " aiofiles >= 22.1.0" ,
3232 " aioshutil >= 1.0" ,
3333 " colorama >= 0.4.6" ,
@@ -111,7 +111,6 @@ ignore = [
111111 " S303" , # Use of insecure MD2, MD4, MD5, or SHA1 hash function
112112 " S311" , # Standard pseudo-random generators are not suitable for cryptographic purposes
113113 " TD002" , # Missing author in TODO; try: `# TODO(<author_name>): ...` or `# TODO @<author_name>: ...
114- " TID252" , # Relative imports from parent modules are bannedRuff
115114 " TRY003" , # Avoid specifying long messages outside the exception class
116115
117116 # TODO: Remove this once the following issue is fixed
@@ -139,6 +138,7 @@ indent-style = "space"
139138 " PLR2004" , # Magic value used in comparison, consider replacing {value} with a constant variable
140139 " S101" , # Use of assert detected
141140 " T20" , # flake8-print
141+ " TID252" , # Relative imports from parent modules are banned
142142 " TRY301" , # Abstract `raise` to an inner function
143143]
144144
@@ -147,7 +147,7 @@ docstring-quotes = "double"
147147inline-quotes = " single"
148148
149149[tool .ruff .lint .isort ]
150- known-first-party = [" apify" , " apify_client " , " apify_shared " ]
150+ known-local-folder = [" apify" ]
151151
152152[tool .ruff .lint .pydocstyle ]
153153convention = " google"
0 commit comments