Skip to content

Commit 629a983

Browse files
authored
Merge pull request #72 from geoadmin/feat-PB-1920-python3.13
PB-1920: Add support for python 3.13 - #minor
2 parents 6143af1 + f643e26 commit 629a983

File tree

5 files changed

+448
-547
lines changed

5 files changed

+448
-547
lines changed

.pylintrc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,12 @@ disable=missing-docstring,
6666
unused-variable,
6767
pointless-string-statement,
6868
too-many-arguments,
69+
too-many-positional-arguments,
6970
too-few-public-methods,
7071
useless-object-inheritance,
7172
consider-using-f-string,
72-
use-list-literal
73+
use-list-literal,
74+
duplicate-code
7375

7476

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

521523
# Exceptions that will emit a warning when being caught. Defaults to
522524
# "BaseException, Exception".
523-
overgeneral-exceptions=BaseException,
524-
Exception,
525-
StandardError
525+
overgeneral-exceptions=builtins.BaseException,
526+
builtins.Exception

Pipfile

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,16 @@ verify_ssl = true
44
name = "pypi"
55

66
[dev-packages]
7-
build = "~=0.8.0"
8-
dill = "~=0.3.6"
9-
pip = "~=24.0"
10-
pylint = "~=2.15.4"
11-
isort = "~=5.11.4"
12-
yapf = "~=0.32.0"
13-
coverage = "~=7.0.5"
14-
django = "~=3.2.18"
15-
flask = "~=2.3.2"
16-
importlib_metadata = "~=6.0.0"
17-
nose2 = "~=0.12.0"
18-
packaging = "~=23.0"
19-
requests = "~=2.32.2"
20-
requests-toolbelt = "~=1.0.0"
21-
toml = "~= 0.10.2"
22-
tomli = "~= 2.0.1"
23-
tomlkit = "~= 0.11.6"
24-
twine = "~=4.0.1"
25-
wrapt = "~=1.14.1"
7+
# update to latest major
8+
build = "*"
9+
pylint = "*"
10+
isort = "*"
11+
yapf = "*"
12+
coverage = "*"
13+
django = "*"
14+
flask = "*"
15+
nose2 = "*"
16+
twine = "*"
17+
setuptools = "*"
2618

2719
[requires]

0 commit comments

Comments
 (0)