Skip to content

Commit

Permalink
ci: drop python 3.9, use 3.11 as default
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
  • Loading branch information
arthurzam committed Jan 14, 2024
1 parent 1ed31be commit 3f013bb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Install dependencies
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11']
deps: [newest-deps]
experimental: [false]
tree-sitter-bash: [bundled]
Expand All @@ -24,17 +24,17 @@ jobs:
# experimental: true
# tree-sitter-bash: bundled
- os: ubuntu-latest
python-version: '3.10'
python-version: '3.11'
deps: minimal-deps
experimental: false
tree-sitter-bash: bundled
- os: ubuntu-latest
python-version: '3.10'
python-version: '3.11'
deps: newest-deps
experimental: false
tree-sitter-bash: system
- os: macos-latest
python-version: '3.10'
python-version: '3.11'
deps: newest-deps
experimental: false
tree-sitter-bash: bundled
Expand Down

0 comments on commit 3f013bb

Please sign in to comment.