728x90
해당 에러는 poetry 에서 python 버전을 명시해주면 된다.
아래와 같이 pyproject.toml내 python버전을 python = "^3.9"에서 python = "==3.9.1"로 바꿔주면 된다.
Before
...
[tool.poetry.dependencies]
python = "^3.9"
...
After
...
[tool.poetry.dependencies]
python = "==3.9.1"
...
728x90
댓글