Skip to content

Commit

Permalink
test: try to fix Current Python version (3.11.9) is not allowed by th…
Browse files Browse the repository at this point in the history
…e project (~3.10).
  • Loading branch information
Ljzd-PRO committed May 22, 2024
1 parent ba12d33 commit 9bd92bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/plugin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ async def create_poetry_project(self) -> None:
if not self.path.exists():
self.path.mkdir(parents=True)
proc = await create_subprocess_shell(
f"""poetry init --name=plugin-test --python=">=3.9,<4.0" -n && sed -i "s/\\^/~/g" pyproject.toml && poetry env info --ansi && poetry add {self.whl_path}""",
f"""poetry init --name=plugin-test --python=">=3.9,<4.0" -n""",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
cwd=self.path,
Expand Down

0 comments on commit 9bd92bb

Please sign in to comment.