Skip to content

Commit

Permalink
ci: update Python version for building packages to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
raymar9 committed Mar 13, 2024
1 parent e4c946b commit e774e26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.10
cache: "pipenv"
- name: Install pipenv
run: |
python -m pip install --upgrade pip pipenv
python --version; python -m pip --version; pipenv --version
- name: Setup project with pipenv
run: |
pipenv --python 3.9 install --dev
pipenv --python 3.10 install --dev
- name: Prepare to build a Debian source package
run: |
sudo apt-get -y install python3-all debhelper dh-python rename
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.10
cache: "pipenv"
- name: Install pipenv
run: |
python -m pip install --upgrade pip pipenv
python --version; python -m pip --version; pipenv --version
- name: Setup project with pipenv
run: |
pipenv --python 3.9 install --dev
pipenv --python 3.10 install --dev
- name: Build a Python package
run: |
Expand Down

0 comments on commit e774e26

Please sign in to comment.