Skip to content

Commit

Permalink
add support for pip==22.1 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier authored May 19, 2022
1 parent 77f8c19 commit 4732e35
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,21 @@ def task_install():
yield dict(
name="dev",
file_dep=[HERE / "requirements-dev.txt"],
actions=[do("python -m pip install --upgrade -r requirements-dev.txt")],
actions=[
do(
"python -m pip install --upgrade --upgrade-strategy=eager",
"-r requirements-dev.txt",
)
],
)
yield dict(
name="project",
actions=[do("python -m pip install -e .")],
actions=[
do(
"python -m pip install --upgrade --upgrade-strategy=eager",
"-e .",
)
],
)


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ packages = find:
include_package_data = True
python_requires = >=3.7
install_requires =
pip ==22.0.*, != 22.0, != 22.0.1, != 22.0.2
pip >=22.0, <22.2, != 22.0, != 22.0.1, != 22.0.2

[options.packages.find]
exclude =
Expand Down

0 comments on commit 4732e35

Please sign in to comment.