Skip to content

Commit 6fcc243

Browse files
committed
Update packages, change robotframework dependency to a not fixed version for installation
1 parent 461af0e commit 6fcc243

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1034,8 +1034,8 @@
10341034
"@typescript-eslint/eslint-plugin": "^5.40.1",
10351035
"@typescript-eslint/parser": "^5.40.1",
10361036
"@vscode/debugadapter-testsupport": "^1.57.0",
1037-
"@vscode/test-electron": "^2.1.5",
1038-
"eslint": "^8.25.0",
1037+
"@vscode/test-electron": "^2.2.0",
1038+
"eslint": "^8.26.0",
10391039
"eslint-config-prettier": "^8.5.0",
10401040
"eslint-plugin-import": "^2.26.0",
10411041
"eslint-plugin-jsx-a11y": "^6.6.1",
@@ -1047,7 +1047,7 @@
10471047
"prettier": "^2.7.1",
10481048
"ts-loader": "^9.4.1",
10491049
"typescript": "^4.8.4",
1050-
"vsce": "^2.12.0",
1050+
"vsce": "^2.13.0",
10511051
"webpack": "^5.74.0",
10521052
"webpack-cli": "^4.10.0"
10531053
}

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@ classifiers = [
5151

5252
[tool.poetry.dependencies]
5353
python = "^3.8"
54-
robotframework = { version = "~4.1.0", allow-prereleases = false }
54+
robotframework = { version = ">=4.1.0"}
5555

5656

5757
[tool.poetry.group.dev.dependencies]
58+
robotframework = { version = "~4.1.0", allow-prereleases = false }
5859
isort = "*"
5960
mypy = "*"
6061
flake8 = "*"
@@ -83,6 +84,10 @@ types-PyYAML = "*"
8384
robotframework-robocop = "*"
8485
robotframework-tidy = "*"
8586

87+
[tool.poetry.scripts]
88+
'robotcode.debugger' = 'robotcode.debugger.__main__:main'
89+
'robotcode.language_server' = 'robotcode.language_server.__main__:main'
90+
8691
[tool.black]
8792
line-length = 120
8893
target-version = ['py38']
@@ -142,11 +147,4 @@ warn_unused_configs = true
142147
strict = true
143148
disallow_subclassing_any = false
144149
ignore_missing_imports = true
145-
exclude = [
146-
"\\.mypy_cache",
147-
"\\.venv",
148-
"build",
149-
"dist",
150-
"out",
151-
"playground",
152-
]
150+
exclude = ["\\.mypy_cache", "\\.venv", "build", "dist", "out", "playground"]

0 commit comments

Comments
 (0)