Skip to content

Commit

Permalink
[fix] pin botocore !=1.32.1 (#18049)
Browse files Browse the repository at this point in the history
## Summary

pins botocore != the newest version, which is causing test failures:
https://buildkite.com/dagster/dagster/builds/70829#018bd4da-aa83-45e4-87b0-1013c9d7be9e
(this may be an issue w/ moto3 not being updated)
  • Loading branch information
benpankow authored Nov 15, 2023
1 parent f696d29 commit 1f15855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python_modules/libraries/dagster-aws/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_version() -> str:
"redshift": ["psycopg2-binary"],
"pyspark": ["dagster-pyspark"],
"test": [
"botocore",
"botocore!=1.32.1",
"moto[s3,server]>=2.2.8",
"requests-mock",
"xmltodict==0.12.0", # pinned until moto>=3.1.9 (https://github.com/spulec/moto/issues/5112)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def handle_output(
TableSchema(
columns=[
TableColumn(name=name, type=str(dtype))
for name, dtype in zip(reader.schema.names, reader.schema.types) # type: ignore pyarrow does not expose types
for name, dtype in zip(reader.schema.names, reader.schema.types)
]
)
),
Expand Down

0 comments on commit 1f15855

Please sign in to comment.