Skip to content

Commit

Permalink
Dropping support of Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dvolodin7 committed Nov 6, 2024
1 parent cda1e9f commit cc2c18c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Set Up Python 3.10
- name: Set Up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"

- name: Upgrade Pip
run: python -m pip install --upgrade pip
Expand Down 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 3.13
./tools/build/build-many.sh 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 3.13
./tools/build/build-many.sh 3.9 3.10 3.11 3.12 3.13
- name: Save Artefacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
# --user 0
# --platform ${{ matrix.platform }}
# quay.io/pypa/musllinux_1_1_${{ matrix.arch }}:latest
# ./tools/build/build-many.sh 3.8 3.9 3.10
# ./tools/build/build-many.sh 3.9 3.10

# - name: Save Artefacts
# uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
fail-fast: true
matrix:
# Run on all supported versions
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
env:
RUST_ARCH: x86_64-unknown-linux-gnu
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ To see unreleased changes, please see the [CHANGELOG on the main branch guide](h

### Changed

* Dropping support of Python 3.8
* Massive refactoring of internals to support PyO3 0.22 and to remove duplicated code.
* Use reusable buffers pool insead of allocating buffer along with each socket.

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ classifiers = [
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Programming Language :: Rust",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -29,7 +28,7 @@ dynamic = ["version"]
keywords = ["error"]
license = {text = "BSD 3-Clause License"}
name = "gufo_snmp"
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.readme]
content-type = "text/markdown"
Expand Down
2 changes: 1 addition & 1 deletion tools/build/build-many.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ------------------------------------------------------------------------
# Gufo Labs: Build wheel in the quay.io/pypa/manylinux2014_x86_64:latest
# Usage:
# ./tools/build/build-manylinux 3.8 3.9 3.10 3.11
# ./tools/build/build-manylinux 3.9 3.10 3.11 3.11 3.12 3.13
# expects RUST_VERSION and RUST_ARCH
# ------------------------------------------------------------------------
# Copyright (C) 2022-23, Gufo Labs
Expand Down

0 comments on commit cc2c18c

Please sign in to comment.