Skip to content

Commit

Permalink
Set up Python3.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
xskill committed Feb 15, 2023
1 parent fbcba7a commit 8984d30
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:
restore-keys: |
openwrt-${{ env.PACKAGE_NAME }}-
- name: Set up Python 3.10
- name: Set up Python 3.9.16
uses: actions/setup-python@v3
with:
python-version: 3.10
python-version: 3.9.16

- name: Install Dependencies
run: |
DEBIAN_FRONTEND=noninteractive \
sudo apt-get install -y ccache gettext libncurses5-dev xsltproc gcc g++ python3.9.16
sudo apt-get install -y ccache gettext libncurses5-dev xsltproc gcc g++
- name: Create Directories
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,15 @@ jobs:
restore-keys: |
openwrt-${{ env.PACKAGE_NAME }}-
- name: Set up Python 3.9.16
uses: actions/setup-python@v3
with:
python-version: 3.9.16

- name: Install Dependencies
run: |
DEBIAN_FRONTEND=noninteractive \
sudo apt-get install -y ccache gettext libncurses5-dev xsltproc gcc g++ python3.9.16
sudo apt-get install -y ccache gettext libncurses5-dev xsltproc gcc g++
- name: Create Directories
run: |
Expand Down

0 comments on commit 8984d30

Please sign in to comment.