Skip to content

Commit 9f1c173

Browse files
committed
Fix Python version quoting and flake8 issues
1 parent b4391ca commit 9f1c173

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python 3.11
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: 3.11
19+
python-version: '3.11'
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip

.github/workflows/pytest-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-20.04, ubuntu-latest]
18-
python-version: [3.10, 3.11, 3.12, 3.13]
18+
python-version: ['3.10', '3.11', '3.12', '3.13']
1919

2020
steps:
2121
- uses: actions/checkout@v4

.github/workflows/pytest-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: macos-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.10, 3.11, 3.12, 3.13]
14+
python-version: ['3.10', '3.11', '3.12', '3.13']
1515

1616
steps:
1717
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def extensions():
5555
'author': "Imperial College London",
5656
'author_email': 'g.gorman@imperial.ac.uk',
5757
'license': 'MIT',
58-
'zip_safe': False
59-
,'classifiers': [
58+
'zip_safe': False,
59+
'classifiers': [
6060
'Programming Language :: Python :: 3',
6161
'Programming Language :: Python :: 3 :: Only',
6262
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)