Skip to content

Commit

Permalink
drop 3.9 from ci, use correct timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Aug 16, 2024
1 parent 63cf7cf commit eee60f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, macos]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']

runs-on: ${{ matrix.os }}-latest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ async def test_real_upload(real_aws: AWS):
assert len(files) == 1
assert files[0] == {
'key': path,
'last_modified': IsNow(delta=10, tz='utc'),
'last_modified': IsNow(delta=10, tz='UTC'),
'size': 14,
'e_tag': '54b0c58c7ce9f2a8b551351102ee0938',
'storage_class': 'STANDARD',
Expand Down

0 comments on commit eee60f3

Please sign in to comment.