Skip to content

Commit a66b9af

Browse files
authored
Run linting on Python 3.9 (#746)
1 parent 6b621b4 commit a66b9af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15-
- name: Set up Python 3.8
15+
- name: Set up Python 3.9
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: 3.8
18+
python-version: 3.9
1919
- name: Install Lint Dependencies
2020
run: |
2121
pip install -r test-requirements.txt --no-cache-dir

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ keep_going = True
77
strict_import = True
88
# Disable import errors since our pybind modules are not available during type check and we don't supply type stubs
99
disable = import-error
10-
python_version = 3.8
10+
python_version = 3.9

0 commit comments

Comments
 (0)