Skip to content

Instantly share code, notes, and snippets.

@EwoutH
Created October 27, 2022 18:57
Show Gist options
  • Save EwoutH/1214509b645b48815871912a771523ab to your computer and use it in GitHub Desktop.
Save EwoutH/1214509b645b48815871912a771523ab to your computer and use it in GitHub Desktop.
Pyproject.toml git install dependent on Python version
[project]
dependencies = [
"numpy",
"pandas",
"statsmodels; python_version < '3.11'",
"statsmodels @ git+https://github.com/statsmodels/statsmodels.git; python_version >= '3.11'",
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment