Bundle omits typing_extensions.py
I have a project where typing-extensions is a second-level dependency of multiple modules. Poetry correctly installs the module in the dev virtualenv, but when I run 'poetry bundle venv', the resulting virtualenv does not have typing_extensions.py installed.
Edit: I'm using a pyenv-managed install of python 3.7.16
pyproject.toml:
[tool.poetry] name = "siq" version = "0.1.0" description = "" authors = ["grandpa [email protected]"] readme = "README.md"
[tool.poetry.dependencies] python = "^3.7" gql = "3.0.0a6" requests = "^2.28.2" iso8601 = "^1.1.0" python-dateutil = "2.8.2" aiohttp = "^3.8.3" cx-oracle = "^8.3.0"
[tool.poetry.group.dev.dependencies]
[build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"