Skip to content

Commit 3012d7e

Browse files
author
Jesse Whitehouse
committed
Updated poetry lock file to split our numpy dependency based on python version
I installed the latest poetry (v1.2.2), deleted my lockfile, and ran poetry update to generate these changes. I manually edited pyproject.toml following the guidance from poetry's docs: https: //python-poetry.org/docs/dependency-specification/#multiple-constraints-dependencies Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent f3605a5 commit 3012d7e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pyproject.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ thrift = "^0.16.0"
1414
pandas = "^1.3.0"
1515
pyarrow = "^9.0.0"
1616
lz4 = "^4.0.2"
17-
requests=">2.18.1"
18-
oauthlib=">=3.1.0"
17+
requests="^2.18.1"
18+
oauthlib="^3.1.0"
19+
numpy = [
20+
{version = "1.21.1", python = ">=3.7,<3.8"},
21+
{version = "1.23.4", python = ">=3.8"}
22+
]
1923

2024
[tool.poetry.dev-dependencies]
2125
pytest = "^7.1.2"

0 commit comments

Comments
 (0)