Skip to content

Commit

Permalink
upgrade python
Browse files Browse the repository at this point in the history
  • Loading branch information
3ll3d00d committed Dec 12, 2023
1 parent 5330c30 commit 678e0fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/create-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
- name: Set version
run: |
echo ${{ steps.get_version.outputs.version-without-v }} > cmdserver/VERSION
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.12"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pip install wheel
pipenv --python 3.9 install -d
pipenv --python 3.12 install -d
pip list
pipenv run pip list
- name: Build dist
Expand All @@ -42,15 +42,15 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.12"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv --python 3.9 install -d
pipenv --python 3.12 install -d
pipenv run pip install pyinstaller
pip list
pipenv run pip list
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ pytest = "*"
pipenv-setup = {extras = ["black"], version = "*"}

[requires]
python_version = "3.9"
python_version = "3.12"
4 changes: 2 additions & 2 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 678e0fa

Please # to comment.