Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Commit

Permalink
dev env: re-add exceptiongroup, tomli & wrapt to fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
fphammerle committed Nov 12, 2022
1 parent fa77b4e commit 527cf15
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Pipfile
Expand Up @@ -21,6 +21,18 @@ pytest-cov = "*"
typing-extensions = "*"
# mypy on python<3.8
typed-ast = {markers = "python_version < '3.8'"}
# > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
# > from exceptiongroup import BaseExceptionGroup
# > ModuleNotFoundError: No module named 'exceptiongroup'
exceptiongroup = {markers = "python_version < '3.11'"}
# > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
# > import tomli as tomllib
# > ModuleNotFoundError: No module named 'tomli'
tomli = {markers = "python_version < '3.11'"}
# > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
# > import wrapt
# > ModuleNotFoundError: No module named 'wrapt'
wrapt = "*"

[requires]
python_version = "3"
Expand Down
22 changes: 20 additions & 2 deletions Pipfile.lock

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

0 comments on commit 527cf15

Please sign in to comment.