Skip to content

Commit

Permalink
Update package.yml
Browse files Browse the repository at this point in the history
Use Python 3.9
  • Loading branch information
robertodr authored Jul 15, 2022
1 parent 100134f commit c2f9a5b
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,23 @@ on:

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6]
os: [ubuntu-latest]
runs-on: ubuntu-latest

steps:
- name: Switch branch
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: "3.9"

- name: Install Python dependencies
run: |
which python
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Flit publish
run:
flit publish
Expand Down

0 comments on commit c2f9a5b

Please sign in to comment.