Skip to content

Commit

Permalink
update Python version to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
raymar9 committed Mar 25, 2024
1 parent 746c7dc commit 4c969aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 31 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.10"
python-version: "3.11"
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.10 install --dev
pipenv --python 3.11 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.10"
python-version: "3.11"
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.10 install --dev
pipenv --python 3.11 install --dev
- name: Build a Python package
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

name: Running Python code checks with Python ${{ matrix.python-version }}
steps:
Expand Down
27 changes: 1 addition & 26 deletions Pipfile.lock

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

0 comments on commit 4c969aa

Please sign in to comment.