Skip to content

Commit

Permalink
Python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dvolodin7 committed Nov 6, 2024
1 parent 787fe72 commit 8db355d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
-w /workdir
--user 0
quay.io/pypa/manylinux2014_${{ matrix.arch }}:latest
./tools/build/build-many.sh 3.8 3.9 3.10 3.11 3.12
./tools/build/build-many.sh 3.8 3.9 3.10 3.11 3.12 3.13
- name: Save Artefacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
--user 0
--platform ${{ matrix.platform }}
quay.io/pypa/manylinux_2_28_${{ matrix.arch }}:latest
./tools/build/build-many.sh 3.8 3.9 3.10 3.11 3.12
./tools/build/build-many.sh 3.8 3.9 3.10 3.11 3.12 3.13
- name: Save Artefacts
uses: actions/upload-artifact@v3
Expand Down
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,26 @@ To see unreleased changes, please see the [CHANGELOG on the main branch guide](h

## [Unreleased]

### Fixed

* Fix [#16][#16]: SNMPv3 requests not works with Mikrotik RouterOS devices.
* Fix [#15][#15]: sync client not releasing Python GIL on blocking operations.

### Added

* Python 3.13 binary wheels.

### Changed

* Massive refactoring of internals to support PyO3 0.22.
* Use reusable buffers pool insead of allocating buffer along with each socket.

### Infrastructure

* Rust 1.82.0
* mypy 1.13.0
* Ruff 0.6.9
* Ruff 0.7.2
* Black formatter replaced by Ruff.

## 0.5.2 - 2024-07-30

Expand Down Expand Up @@ -119,4 +134,5 @@ To see unreleased changes, please see the [CHANGELOG on the main branch guide](h

* Initial implementation

[#1]: https://github.com/gufolabs/gufo_snmp/issues/1
[#1]: https://github.com/gufolabs/gufo_snmp/issues/1
[#16]: https://github.com/gufolabs/gufo_snmp/issues/16
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim-bullseye AS dev
FROM python:3.13-slim-bullseye AS dev
COPY .requirements tools/build/setup-rust.sh /tmp
ENV \
PATH=/usr/local/cargo/bin:$PATH\
Expand Down
1 change: 0 additions & 1 deletion docs/dev/codebase.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ The code base of the project has following structure:
[Mkdocs]: https://www.mkdocs.org
[Mkdocs Material]: https://squidfunk.github.io/mkdocs-material/
[Ruff]: https://docs.astral.sh/ruff/
[Flake8]: https://flake8.pycqa.org/en/latest/
[Mypy]: https://mypy.readthedocs.io/en/stable/
[Pytest]: https://docs.pytest.org/
[Dockerfile]: https://docs.docker.com/engine/reference/builder/
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
Expand Down

0 comments on commit 8db355d

Please sign in to comment.