Skip to content

Commit

Permalink
Update moto[s3,server] remove upper version bound (#248)
Browse files Browse the repository at this point in the history
* Update moto[s3,server] requirement from <5 to <6

Updates the requirements on [moto[s3,server]](https://github.com/getmoto/moto) to permit the latest version.
- [Release notes](https://github.com/getmoto/moto/releases)
- [Changelog](https://github.com/getmoto/moto/blob/master/CHANGELOG.md)
- [Commits](getmoto/moto@0.0.7...5.0.12)

---
updated-dependencies:
- dependency-name: moto[s3,server]
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

* tests: update moto usage for compatibility with newer versions

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andreas Poehlmann <[email protected]>
  • Loading branch information
dependabot[bot] and ap-- authored Aug 28, 2024
1 parent 18ade33 commit 15712e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 15712e6

Please sign in to comment.