itw-python-builder 0.1.13__tar.gz → 0.1.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/PKG-INFO +1 -1
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder/.pylintrc +5 -4
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/PKG-INFO +1 -1
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/pyproject.toml +1 -1
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/LICENSE +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/README.md +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder/__init__.py +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder/cli.py +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder/tasks.py +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder/version.py +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/SOURCES.txt +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/dependency_links.txt +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/entry_points.txt +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/requires.txt +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/top_level.txt +0 -0
- {itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/setup.cfg +0 -0
|
@@ -298,7 +298,7 @@ exclude-too-few-public-methods=
|
|
|
298
298
|
ignored-parents=
|
|
299
299
|
|
|
300
300
|
# Maximum number of arguments for function / method.
|
|
301
|
-
max-args=
|
|
301
|
+
max-args=15
|
|
302
302
|
|
|
303
303
|
# Maximum number of attributes for a class (see R0902).
|
|
304
304
|
max-attributes=7
|
|
@@ -316,16 +316,16 @@ max-locals=25
|
|
|
316
316
|
max-parents=15
|
|
317
317
|
|
|
318
318
|
# Maximum number of positional arguments for function / method.
|
|
319
|
-
max-positional-arguments=
|
|
319
|
+
max-positional-arguments=15
|
|
320
320
|
|
|
321
321
|
# Maximum number of public methods for a class (see R0904).
|
|
322
322
|
max-public-methods=20
|
|
323
323
|
|
|
324
324
|
# Maximum number of return / yield for function / method body.
|
|
325
|
-
max-returns=
|
|
325
|
+
max-returns=15
|
|
326
326
|
|
|
327
327
|
# Maximum number of statements in function / method body.
|
|
328
|
-
max-statements=
|
|
328
|
+
max-statements=60
|
|
329
329
|
|
|
330
330
|
# Minimum number of public methods for a class (see R0903).
|
|
331
331
|
min-public-methods=2
|
|
@@ -449,6 +449,7 @@ disable=raw-checker-failed, # internal pylint che
|
|
|
449
449
|
R0903, # too-few-public-methods (Django Meta classes)
|
|
450
450
|
W0718, # broad-exception-caught
|
|
451
451
|
W0719, # broad-exception-raised
|
|
452
|
+
W0212, # protected-access (Django _meta, _prefetched_objects_cache)
|
|
452
453
|
bad-inline-option, # unrecognized inline pylint option
|
|
453
454
|
locally-disabled, # warning about locally disabled messages
|
|
454
455
|
file-ignored, # warning about ignored files
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "itw_python_builder"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.15"
|
|
8
8
|
description = "Standardized Django deployment pipeline with Docker, testing, and SonarQube integration"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/requires.txt
RENAMED
|
File without changes
|
{itw_python_builder-0.1.13 → itw_python_builder-0.1.15}/itw_python_builder.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|