Skip to content

Commit

Permalink
new_version_0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
liormizr committed Jan 30, 2024
1 parent 4d13c4d commit 502355e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion s3path/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from . import accessor

__version__ = '0.5.1'
__version__ = '0.5.2'
__all__ = (
'register_configuration_parameter',
'StatResult',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = fh.read()
setup(
name='s3path',
version='0.5.1',
version='0.5.2',
url='https://github.com/liormizr/s3path',
author='Lior Mizrahi',
author_email='li.mizr@gmail.com',
Expand Down
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
import boto3
import pytest
from moto import mock_s3
from moto import mock_aws

from s3path import register_configuration_parameter, PureS3Path

Expand Down Expand Up @@ -33,7 +33,7 @@ def reset_configuration_cache():

@pytest.fixture()
def s3_mock(reset_configuration_cache):
with mock_s3():
with mock_aws():
register_configuration_parameter(PureS3Path('/'), resource=boto3.resource('s3'))
yield

Expand Down

0 comments on commit 502355e

Please sign in to comment.