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 852af97
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 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
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ env:

jobs:
tests:
runs-on: macos-12
runs-on: macos-13
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
[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
- update to macos-13

[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 852af97

Please sign in to comment.