Skip to content

Commit

Permalink
Update table.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysle committed Apr 18, 2024
1 parent 47d2410 commit b042b0b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ def install_packages(session, package_a, package_b, command_a, command_b):
env = {**os.environ, "PIP_CONSTRAINT": f"{HERE}/constraints.txt"}
session.install("--upgrade", "pip", env=env)
session.chdir(package_a)
session.run("rm", "-rf", "dist", "build", "*.egg-info")
session.run("rm", "-rf", "dist", "build", "*.egg-info", external=True)
session.run(*command_a, env=env)
session.chdir(HERE)
session.chdir(package_b)
session.run("rm", "-rf", "dist", "build", "*.egg-info")
session.run("rm", "-rf", "dist", "build", "*.egg-info", external=True)
session.run(*command_b, env=env)
session.chdir(HERE)

Expand Down
24 changes: 12 additions & 12 deletions table.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@
| pep420 | python3.12 | pip install -e . | pip install . ||
| pep420 | python3.12 | pip install -e . | pip install -e . ||
| cross_pkg_resources_pkgutil | python3.8 | pip install . | pip install . ||
| cross_pkg_resources_pkgutil | python3.8 | pip install . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.8 | pip install . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.8 | pip install -e . | pip install . ||
| cross_pkg_resources_pkgutil | python3.8 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.8 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.10 | pip install . | pip install . ||
| cross_pkg_resources_pkgutil | python3.10 | pip install . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.10 | pip install . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.10 | pip install -e . | pip install . ||
| cross_pkg_resources_pkgutil | python3.10 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.10 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.12 | pip install . | pip install . ||
| cross_pkg_resources_pkgutil | python3.12 | pip install . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.12 | pip install . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.12 | pip install -e . | pip install . ||
| cross_pkg_resources_pkgutil | python3.12 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pkgutil | python3.12 | pip install -e . | pip install -e . | |
| cross_pep420_pkgutil | python3.8 | pip install . | pip install . ||
| cross_pep420_pkgutil | python3.8 | pip install . | pip install -e . ||
| cross_pep420_pkgutil | python3.8 | pip install -e . | pip install . ||
Expand All @@ -63,24 +63,24 @@
| cross_pep420_pkg_resources | python3.8 | pip install . | pip install . ||
| cross_pep420_pkg_resources | python3.8 | pip install . | pip install -e . ||
| cross_pep420_pkg_resources | python3.8 | pip install -e . | pip install . ||
| cross_pep420_pkg_resources | python3.8 | pip install -e . | pip install -e . | |
| cross_pep420_pkg_resources | python3.8 | pip install -e . | pip install -e . | |
| cross_pep420_pkg_resources | python3.10 | pip install . | pip install . ||
| cross_pep420_pkg_resources | python3.10 | pip install . | pip install -e . ||
| cross_pep420_pkg_resources | python3.10 | pip install -e . | pip install . ||
| cross_pep420_pkg_resources | python3.10 | pip install -e . | pip install -e . | |
| cross_pep420_pkg_resources | python3.10 | pip install -e . | pip install -e . | |
| cross_pep420_pkg_resources | python3.12 | pip install . | pip install . ||
| cross_pep420_pkg_resources | python3.12 | pip install . | pip install -e . ||
| cross_pep420_pkg_resources | python3.12 | pip install -e . | pip install . ||
| cross_pep420_pkg_resources | python3.12 | pip install -e . | pip install -e . | |
| cross_pep420_pkg_resources | python3.12 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pep420 | python3.8 | pip install . | pip install . ||
| cross_pkg_resources_pep420 | python3.8 | pip install . | pip install -e . ||
| cross_pkg_resources_pep420 | python3.8 | pip install -e . | pip install . ||
| cross_pkg_resources_pep420 | python3.8 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pep420 | python3.8 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pep420 | python3.10 | pip install . | pip install . ||
| cross_pkg_resources_pep420 | python3.10 | pip install . | pip install -e . ||
| cross_pkg_resources_pep420 | python3.10 | pip install -e . | pip install . ||
| cross_pkg_resources_pep420 | python3.10 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pep420 | python3.10 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pep420 | python3.12 | pip install . | pip install . ||
| cross_pkg_resources_pep420 | python3.12 | pip install . | pip install -e . ||
| cross_pkg_resources_pep420 | python3.12 | pip install -e . | pip install . ||
| cross_pkg_resources_pep420 | python3.12 | pip install -e . | pip install -e . | |
| cross_pkg_resources_pep420 | python3.12 | pip install -e . | pip install -e . | |

0 comments on commit b042b0b

Please sign in to comment.