Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,12 @@ disable=missing-docstring,
unused-variable,
pointless-string-statement,
too-many-arguments,
too-many-positional-arguments,
too-few-public-methods,
useless-object-inheritance,
consider-using-f-string,
use-list-literal
use-list-literal,
duplicate-code


# Enable the message, report, category or checker with the given id(s). You can
Expand Down Expand Up @@ -520,6 +522,5 @@ min-public-methods=2

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception,
StandardError
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
30 changes: 11 additions & 19 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,16 @@ verify_ssl = true
name = "pypi"

[dev-packages]
build = "~=0.8.0"
dill = "~=0.3.6"
pip = "~=24.0"
pylint = "~=2.15.4"
isort = "~=5.11.4"
yapf = "~=0.32.0"
coverage = "~=7.0.5"
django = "~=3.2.18"
flask = "~=2.3.2"
importlib_metadata = "~=6.0.0"
nose2 = "~=0.12.0"
packaging = "~=23.0"
requests = "~=2.32.2"
requests-toolbelt = "~=1.0.0"
toml = "~= 0.10.2"
tomli = "~= 2.0.1"
tomlkit = "~= 0.11.6"
twine = "~=4.0.1"
wrapt = "~=1.14.1"
# update to latest major
build = "*"
pylint = "*"
isort = "*"
yapf = "*"
coverage = "*"
django = "*"
flask = "*"
nose2 = "*"
twine = "*"
setuptools = "*"

[requires]
Loading
Loading