Skip to content

Commit

Permalink
Compatibility fix for latest tox and setuptools (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 authored Oct 3, 2024
1 parent 492a1b7 commit 22cb6c4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,3 @@ build_dir = "build/sphinx"
[tool.devpi.upload]
no-vcs = 1
formats = "bdist_wheel"

[tool.setuptools_scm]
version_scheme = "setup:version_scheme"
local_scheme = "setup:local_scheme"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def local_scheme(version) -> str:


if __name__ == "__main__":
setup()
setup(use_scm_version={"local_scheme": local_scheme, "version_scheme": version_scheme})
2 changes: 1 addition & 1 deletion src/environment_provider/lib/log_area.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from requests.exceptions import ConnectionError as RequestsConnectionError
from requests.exceptions import HTTPError

# pylint:disable=too-many-arguments
# pylint:disable=too-many-arguments,too-many-positional-arguments


class LogArea: # pylint:disable=too-few-public-methods
Expand Down

0 comments on commit 22cb6c4

Please sign in to comment.