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

Update moto[s3,server] remove upper version bound #248

Merged
merged 2 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dev =
requests
gcsfs
s3fs
moto[s3,server]<5
moto[s3,server]
webdav4[fsspec]
wsgidav
cheroot
Expand Down
2 changes: 1 addition & 1 deletion upath/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def s3_server():
port = 5555
endpoint_uri = f"http://127.0.0.1:{port}/"
proc = subprocess.Popen(
shlex.split(f"moto_server s3 -p {port}"),
shlex.split(f"moto_server -p {port}"),
stderr=subprocess.DEVNULL,
stdout=subprocess.DEVNULL,
)
Expand Down
Loading