Skip to content

Commit 02376f6

Browse files
Merge branch 'library-upgrades'
2 parents 9f46127 + 6c56f60 commit 02376f6

File tree

5 files changed

+2278
-1667
lines changed

5 files changed

+2278
-1667
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ['3.9', '3.10', '3.11']
13+
python-version: ['3.10', '3.11']
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up Python
1717
uses: actions/setup-python@v3
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Setup Poetry
2121
uses: snok/install-poetry@v1
2222
with:
23-
version: 1.4.0
23+
version: 1.6.1
2424
virtualenvs-create: true
2525
virtualenvs-in-project: true
2626
- name: Load cached venv

.python-version

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
3.9.16
2-
3.10.10
3-
3.11.2
1+
3.10.13
2+
3.11.6

README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Most of the code for this came from the aioboto3 tests themselves at https://git
1010

1111
## Running the example test
1212

13-
- Poetry 1.4+
14-
- Python 3.9+ (although probably Python 3.7+ will work)
13+
- Poetry 1.6+
14+
- Python 3.10+ (although probably Python 3.7+ will work)
1515

1616
```
1717
poetry install
@@ -21,16 +21,18 @@ poetry run pytest
2121
Example output:
2222

2323
```console
24-
================================================================================================= test session starts =================================================================================================
25-
platform darwin -- Python 3.9.11, pytest-7.1.2, pluggy-1.0.0
26-
rootdir: /Users/phillip/aioboto3-testing, configfile: pyproject.toml, testpaths: tests
27-
plugins: asyncio-0.18.3
28-
asyncio: mode=auto
24+
=========================================================================================================== test session starts ===========================================================================================================
25+
platform darwin -- Python 3.11.6, pytest-7.4.3, pluggy-1.3.0
26+
rootdir: /Users/phillip/pytest-aioboto3
27+
configfile: pyproject.toml
28+
testpaths: tests
29+
plugins: asyncio-0.21.1, aioboto3-0.1.0
30+
asyncio: mode=Mode.AUTO
2931
collected 1 item
3032

31-
tests/test_s3.py . [100%]
33+
tests/test_s3.py . [100%]
3234

33-
================================================================================================== 1 passed in 0.96s ==================================================================================================
35+
============================================================================================================ 1 passed in 0.94s ============================================================================================================
3436
```
3537

3638
## Installation

0 commit comments

Comments
 (0)