Skip to content

Commit

Permalink
feat: add support for Python 3.12 (#134)
Browse files Browse the repository at this point in the history
* feat: add support for Python 3.12

* feat: only test Windows/Mac on latest and oldest versions

* feat: fix poetry lock file
  • Loading branch information
JurgenR authored Dec 14, 2023
1 parent c7f3406 commit aa808ac
Show file tree
Hide file tree
Showing 4 changed files with 542 additions and 475 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,20 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
exclude:
- os: macos-latest
python-version: "3.9"
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.9"
- os: windows-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.11"
runs-on: ${{ matrix.os }}

defaults:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ aioslsk

aioslsk is a Python library for the SoulSeek protocol built on top of asyncio.

Supported Python versions are currently 3.8 - 3.11
Supported Python versions are currently 3.8 - 3.12

You can find the full documentation `here <http://aioslsk.readthedocs.io/>`_

Expand Down
Loading

0 comments on commit aa808ac

Please sign in to comment.