Skip to content

Commit

Permalink
GH-68: Update mslex to v1 (#69)
Browse files Browse the repository at this point in the history
* Update mslex to v1

* Fix resolution issues on poetry v1.1.5

The resolver on this version isn't quite as good as
newer poetry versions. To help it out, the dev dependencies
are exact versions so it doesn't have to sift through as many
combinations/options. Without this, I was getting into a state
where it was resolving dependencies for over 30,000 seconds and
showed no signs of stopping anytime soon.
  • Loading branch information
eugenetriguba committed Sep 9, 2023
1 parent 51373e1 commit 75e73e2
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 68 deletions.
126 changes: 63 additions & 63 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ tomli = [
{ version = "^1.2.3", python = "~3.6" }
]
psutil = "^5.7.2"
mslex = { version = "^0.3.0", markers = "sys_platform == 'win32'" }
mslex = { version = "^1.1.0", markers = "sys_platform == 'win32'" }
colorama = "^0.4.4"

[tool.poetry.dev-dependencies]
pylint = "^2.4.4"
mypy = "^0.971"
rope = "^0.14.0"
parameterized = "^0.8.1"
pylint = "2.12.0"
mypy = "0.971"
rope = "0.14.0"
parameterized = "0.8.1"

[tool.taskipy.tasks]
test = { cmd = "python -m unittest -v tests/test_*.py", help = "runs all tests" }
Expand Down

0 comments on commit 75e73e2

Please sign in to comment.