Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump s3fs version #2017

Closed
wants to merge 14 commits into from
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
PANDAS = "pandas~=1.3"
SPARK = "pyspark>=2.2, <3.4"
HDFS = "hdfs>=2.5.8, <3.0"
S3FS = "s3fs>=0.3.0, <0.5"
S3FS = "s3fs>=0.3, <2023.12.1" # Revise in end of 2023

template_files = []
for pattern in ["**/*", "**/.*", "**/.*/**", "**/.*/.**"]:
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ def preserve_system_context():
sys.path = old_path

if os.getcwd() != old_cwd:
os.chdir(old_cwd) # pragma: no cover
os.chdir(old_cwd) # pragma: no cover
2 changes: 1 addition & 1 deletion tests/io/test_partitioned_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,4 +550,4 @@ def test_describe(self, dataset):

assert f"path={path}" in str(pds)
assert "dataset_type=CSVDataSet" in str(pds)
assert "dataset_config" in str(pds)
assert "dataset_config" in str(pds)
Loading