Bump urllib3 from 1.26.12 to 1.26.18 #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Packs | |
on: [push] | |
jobs: | |
job1: | |
name: My first job | |
runs-on: macos-11 | |
strategy: | |
matrix: | |
python-version: ["3.8"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 设置Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 安装依赖库 | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install py2app | |
- name: 检查版本 | |
run: | | |
pip list | |
- name: Mac App打包 | |
run: | | |
python .github/Pack-Mac.py py2app | |
job2: | |
name: My first job1 | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
python-version: ["3.8"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 设置Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 安装依赖库 | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install py2app | |
- name: 检查版本 | |
run: | | |
pip list | |
- name: Mac App打包 | |
run: | | |
python .github/Pack-Mac.py py2app | |