Skip to content

Commit 1bcc63d

Browse files
[CI] Add Python 3.12 and 3.13 tests (#676)
* ci: add python 3.12 and 3.13 tests * storage: fix whitespaces (e201)
1 parent 3ff013b commit 1bcc63d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
python-version:
3737
- "3.10"
3838
- "3.11"
39+
- "3.12"
40+
- "3.13"
3941
steps:
4042
- uses: actions/checkout@v4
4143
- name: Set up Python ${{ matrix.python-version }}

exodus/exodus/core/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def clear_prefix(self, prefix=None):
3838
for obj in objects:
3939
self.minio_client.remove_object(settings.MINIO_STORAGE_MEDIA_BUCKET_NAME, obj.object_name)
4040
except MinioException:
41-
logging.exception(f"An error occured with MinIO while clearing prefix '{ prefix }'")
41+
logging.exception(f"An error occured with MinIO while clearing prefix '{prefix}'")
4242

4343
def put_file(self, local_path, remote_name):
4444
"""

0 commit comments

Comments
 (0)