-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update core to new devutils and fix lint errors
- Loading branch information
1 parent
1d22a25
commit 43d4238
Showing
11 changed files
with
646 additions
and
663 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "rpaframework-core" | ||
version = "11.3.3" | ||
version = "11.4.0" | ||
description = "Core utilities used by RPA Framework" | ||
authors = ["RPA Framework <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -20,15 +20,16 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries", | ||
"Framework :: Robot Framework :: Library", | ||
"Framework :: Robot Framework", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
packages = [{ include = "RPA", from = "src" }] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
python = "^3.9" | ||
selenium = "^4.6.1" | ||
webdriver-manager = ">=4.0.2,<4.1.0" | ||
psutil = { version = "^5.9.0", platform = "win32" } | ||
|
@@ -38,23 +39,11 @@ pillow = "^10.2.0" | |
packaging = "^24.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^24.3.0" | ||
flake8 = "^3.7.9" | ||
rpaframework-devutils = { path = "../devutils/", develop = true } | ||
importlib-metadata = "^4.13.0" | ||
pylint = "^2.4.4, <2.13" | ||
pytest = "^7.2.0" | ||
pytest-cov = "^4.0.0" | ||
mock = "^5.0.0" | ||
mypy = "^1.4.1" | ||
toml = "^0.10.2" | ||
colorama = "^0.4.5" | ||
keyring = "^24.2.0" | ||
PyYAML = ">=5.4.1,<7.0.0" | ||
flake8-docstrings = "^1.6.0" | ||
flake8-rst-docstrings = "^0.2.7" | ||
|
||
[tool.black] | ||
target-version = ["py38", "py39", "py310"] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# pylint: disable=cyclic-import | ||
# flake8: noqa | ||
from dataclasses import fields | ||
from .containers import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters