Skip to content

Commit 9df8148

Browse files
authored
fix ubuntu image; change actions' versions (#30)
* fix ubuntu image; change actions' versions * explicitly specify runs-on on demand * add python 3.11 classifier; change patch version
1 parent b0eb3dd commit 9df8148

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,23 @@ on:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-latest
12+
runs-on: "${{ matrix.runs-on || 'ubuntu-latest' }}"
1313
strategy:
1414
matrix:
15-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
15+
include:
16+
- { python-version: "3.6", runs-on: "ubuntu-20.04" }
17+
- { python-version: "3.7" }
18+
- { python-version: "3.8" }
19+
- { python-version: "3.9" }
20+
- { python-version: "3.10" }
21+
- { python-version: "3.11" }
1622

1723
steps:
1824
- name: Checkout sources
19-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2026

2127
- name: Setup Python
22-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v4
2329
with:
2430
python-version: ${{ matrix.python-version }}
2531

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout sources
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: Setup Python
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: "3.10"
2121

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use_parentheses= true
3232

3333
[tool.poetry]
3434
name = "fresh-bakery"
35-
version = "0.2.0"
35+
version = "0.2.1"
3636
description = "Bake your dependencies stupidly simple!"
3737
readme = "README.md"
3838
license = "MIT"
@@ -47,6 +47,7 @@ classifiers = [
4747
"Programming Language :: Python :: 3.8",
4848
"Programming Language :: Python :: 3.9",
4949
"Programming Language :: Python :: 3.10",
50+
"Programming Language :: Python :: 3.11",
5051
"Topic :: Software Development",
5152
"Topic :: Software Development :: Libraries",
5253
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)