Skip to content

Commit 9c55b0e

Browse files
committed
changed formatter
1 parent 73827a2 commit 9c55b0e

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
python-version: ['3.10', '3.11', '3.12'] # Specify the Python versions you want to test against
13+
python-version: ['3.9', '3.10', '3.11', '3.12'] # Specify the Python versions you want to test against
1414
os: [ubuntu-latest, windows-latest]
1515
name: Python ${{ matrix.python-version }} - ${{ matrix.os }}
1616
runs-on: ${{ matrix.os }}

.github/workflows/format.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ jobs:
1212
- name: Display Python version
1313
run: python --version
1414
- name: Install packages
15-
run: pip install black autopep8 isort
15+
run: pip install black isort
1616
- name: Formatter
1717
run: |
1818
black .
19-
autopep8 --recursive --in-place --aggressive --aggressive .
2019
isort .
2120
- name: Create Pull Request
2221
uses: peter-evans/create-pull-request@v3

0 commit comments

Comments
 (0)