Skip to content

Commit b68abb2

Browse files
committed
Fix integration test and revert the library version to 1.0.0
1 parent 52e66b5 commit b68abb2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: "3.9"
2626
- name: Install Poetry
2727
run: |
28-
pip install poetry==1.4.0
28+
pip install poetry
2929
poetry --version
3030
- name: Check if there is a parent commit
3131
id: check-parent-commit

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "amazon-sns-extended-client"
3-
version = "1.0.1"
3+
version = "1.0.0"
44
description = "Python version of AWS SNS extended client to publish large payload message"
55
authors = ["Amazon Web Service - SNS"]
66
license = "Apache-2.0"

test_integ/fixtures/sns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@pytest.fixture()
77
def sns_extended_client(session):
88
sns_client = session.client("sns",region_name='us-east-1')
9-
sns_client.large_payload_support = f'integration-test-bucket-{random.randint(0, 10000)}'
9+
sns_client.large_payload_support = f'integration-sns-extended-lib-test-bucket-{random.randint(0, 10000)}'
1010
return sns_client
1111

1212
@pytest.fixture()

0 commit comments

Comments
 (0)