Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Robotframework support to <8.0.0 #1147

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
15 changes: 3 additions & 12 deletions config/pylint
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,13 @@ confidence=
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
disable=fixme,
bad-continuation,
import-error,
invalid-name,
missing-function-docstring,
missing-module-docstring,
no-else-break,
no-else-raise,
no-else-return,
no-self-use,
too-few-public-methods,
too-many-arguments,
too-many-instance-attributes,
Expand Down Expand Up @@ -170,13 +168,6 @@ max-line-length=88
# Maximum number of lines in a module.
max-module-lines=2000

# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator

# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
single-line-class-stmt=no
Expand Down Expand Up @@ -521,6 +512,6 @@ preferred-modules=
[EXCEPTIONS]

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
# "builtins.BaseException, builtins.Exception".
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
915 changes: 537 additions & 378 deletions packages/main/poetry.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions packages/main/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rpaframework"
version = "28.1.0"
version = "28.1.1"
description = "A collection of tools and libraries for RPA"
authors = ["RPA Framework <rpafw@robocorp.com>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -37,12 +37,12 @@ packages = [
python = "^3.8.1"
docutils = "*"
rpaframework-core = "^11.3.0"
rpaframework-pdf = "^7.3.0"
rpaframework-windows = { version = "^7.5.0", platform = "win32" }
rpaframework-pdf = { path = "../pdf/", develop = false }
rpaframework-windows = { path = "../windows/", develop = false }
java-access-bridge-wrapper = "^1.1.0"
robocorp-storage = "^1.0.2"
jsonpath-ng = "^1.5.2"
robotframework = ">=4.0.0,!=4.0.1,!=6.1.0,<7.0.0"
robotframework = ">=4.0.0,!=4.0.1,!=6.1.0,<8.0.0"
robotframework-sapguilibrary = { version = "^1.1", platform = "win32" }
robotframework-seleniumlibrary = "^6.0.0"
robotframework-seleniumtestability = "^2.0.0"
Expand Down Expand Up @@ -93,7 +93,7 @@ holidays = "^0.21"
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
flake8 = "^3.7.9"
pylint = "^2.4.4, <2.13"
pylint = "<3.1.0"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.8.2"
Expand Down
1,012 changes: 471 additions & 541 deletions packages/pdf/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/pdf/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rpaframework-pdf"
version = "7.3.1"
version = "7.3.2"
description = "PDF library of RPA Framework"
authors = ["RPA Framework <rpafw@robocorp.com>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -32,7 +32,7 @@ packages = [{ include = "RPA", from = "src" }]
[tool.poetry.dependencies]
python = "^3.8.1"
rpaframework-core = "^11.2.1"
robotframework = ">=4.0.0,!=4.0.1,!=6.1.0,<7.0.0"
robotframework = ">=4.0.0,!=4.0.1,!=6.1.0,<8.0.0"
robotframework-pythonlibcore = "^4.2.0"
"pdfminer.six" = "20221105"
pypdf = "^3.16.2"
Expand All @@ -41,7 +41,7 @@ fpdf2 = "^2.7.5"
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
flake8 = "^3.7.9"
pylint = "^2.4.4, <2.13"
pylint = "<3.1.0"
pytest = "^7.2.0"
mock = "^5.0.0"
pytest-cov = "^4.0.0"
Expand Down
742 changes: 376 additions & 366 deletions packages/windows/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/windows/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rpaframework-windows"
version = "7.5.0"
version = "7.5.1"
description = "Windows library for RPA Framework"
authors = ["RPA Framework <rpafw@robocorp.com>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -33,7 +33,7 @@ packages = [{ include = "RPA", from = "src" }]
python = "^3.8"
dataclasses = { version = "^0.7", python = ">=3.6,<3.7" }
rpaframework-core = "^11.3.0"
robotframework = ">=4.0.0,!=4.0.1,!=6.1.0,<7.0.0"
robotframework = ">=4.0.0,!=4.0.1,!=6.1.0,<8.0.0"
robotframework-pythonlibcore = "^4.2.0"
pynput-robocorp-fork = "^5.0.0"
uiautomation = "^2.0.15"
Expand All @@ -45,7 +45,7 @@ fire = "^0.4.0"
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
flake8 = "^3.7.9"
pylint = "^2.4.4, <2.13"
pylint = "<3.1.0"
pytest = "^7.2.0"
mock = "^5.0.0"
pytest-cov = "^4.0.0"
Expand Down