Skip to content

Commit 15712e6

Browse files
Update moto[s3,server] remove upper version bound (#248)
* 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]>
1 parent 18ade33 commit 15712e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ dev =
4343
requests
4444
gcsfs
4545
s3fs
46-
moto[s3,server]<5
46+
moto[s3,server]
4747
webdav4[fsspec]
4848
wsgidav
4949
cheroot

upath/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def s3_server():
140140
port = 5555
141141
endpoint_uri = f"http://127.0.0.1:{port}/"
142142
proc = subprocess.Popen(
143-
shlex.split(f"moto_server s3 -p {port}"),
143+
shlex.split(f"moto_server -p {port}"),
144144
stderr=subprocess.DEVNULL,
145145
stdout=subprocess.DEVNULL,
146146
)

0 commit comments

Comments
 (0)