Skip to content

Commit

Permalink
Update to python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
michalkielan committed Dec 16, 2024
1 parent 3dc9e84 commit 329c612
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.8", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- name: Install Python dependencies
run: pip install black flake8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
strategy:
matrix:
api-level: [27]
python-version: ["3.12"]
python-version: ["3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
[Unreleased](https://github.com/michalkielan/simple-adb/compare/0.4.1...HEAD)
-----------------------------------------------------------------------------

### Changed
- switch from python 3.12 to 3.13
- update actions/setup-python@v5

[0.4.1](https://github.com/michalkielan/simple-adb/compare/0.4.0...0.4.1) - 2024-11-17
--------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "simpleadb"
version = "0.4.1"
version = "0.4.1dev"
description = "Python wrapper for adb protocol."
readme = "README.rst"
authors = [{ name = "Michal Kielan", email = "michalkielan@protonmail.com" }]
Expand Down

0 comments on commit 329c612

Please sign in to comment.