Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #53 from dialect-map/python-version-bump
Browse files Browse the repository at this point in the history
Python version bumped to 3.9+
  • Loading branch information
Sinclert authored May 25, 2022
2 parents d0db650 + 74d7b1f commit de101ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v2
- name: "Set up Python 3.7"
uses: actions/setup-python@v2
- name: "Set up Python 3.9"
uses: actions/setup-python@v3
with:
python-version: 3.7
python-version: "3.9"
- name: "Set up private packages SSH keys"
uses: webfactory/[email protected]
with:
Expand All @@ -47,12 +47,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.9", "3.10"]
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v2
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: "Set up private packages SSH keys"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[tool.black]
line-length = 100
target-version = ['py37']
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
Expand Down

0 comments on commit de101ce

Please sign in to comment.