99 steps :
1010 - name : Checkout Repository
1111 uses : actions/checkout@v4
12- - name : Set up Python 3.8
12+ - name : Set up Python 3.9
1313 uses : actions/setup-python@v5
1414 with :
15- python-version : 3.8
15+ python-version : 3.9
1616 - name : Install dependencies
1717 run : |
18- python3.8 -m pip install nox
18+ python3.9 -m pip install nox
1919 - name : Lint the code
2020 run : nox -s lint
2121
@@ -24,13 +24,13 @@ jobs:
2424 steps :
2525 - name : Checkout Repository
2626 uses : actions/checkout@v4
27- - name : Set up Python 3.8
27+ - name : Set up Python 3.9
2828 uses : actions/setup-python@v5
2929 with :
30- python-version : 3.8
30+ python-version : 3.9
3131 - name : Install dependencies
3232 run : |
33- python3.8 -m pip install nox
33+ python3.9 -m pip install nox
3434 - name : Run the api generator
3535 run : nox -s generate
3636
@@ -39,16 +39,16 @@ jobs:
3939 steps :
4040 - name : Checkout Repository
4141 uses : actions/checkout@v4
42- - name : Set up Python 3.8
42+ - name : Set up Python 3.9
4343 uses : actions/setup-python@v5
4444 with :
45- python-version : 3.8
45+ python-version : 3.9
4646 - name : Install build tools
4747 run : |
48- python3.8 -m pip install --upgrade build
48+ python3.9 -m pip install --upgrade build
4949 - name : Build project for distribution
5050 run : |
51- python3.8 -m build
51+ python3.9 -m build
5252
5353 twine-check :
5454 runs-on : ubuntu-latest
0 commit comments