From b96348f56759b1b66b369403c52cd592ac270185 Mon Sep 17 00:00:00 2001 From: Carlos Date: Wed, 8 Jan 2025 18:23:41 -0800 Subject: [PATCH] PyPi fix (#275) - forgot to update the none test one. - bumped the version --- .github/workflows/build_and_publish_to_pypi.yml | 3 +-- setup.cfg | 2 +- sphinx_docs_build/source/conf.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_publish_to_pypi.yml b/.github/workflows/build_and_publish_to_pypi.yml index 0e48a48..040d04f 100644 --- a/.github/workflows/build_and_publish_to_pypi.yml +++ b/.github/workflows/build_and_publish_to_pypi.yml @@ -13,8 +13,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - # macos-13 is an intel runner, macos-14 is apple silicon - os: [ubuntu-latest, macos-13, macos-14] + os: [ubuntu-latest, macos-14, macos-15] steps: - uses: actions/checkout@v4 diff --git a/setup.cfg b/setup.cfg index fc97ad1..6f6e954 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ezsnmp -version = 2.0.0a4 +version = 2.0.0a5 description = A blazingly fast and Pythonic SNMP library based on the official Net-SNMP bindings. We use SWIG to generate the wrapper code for us. author = Carlos Santos author_email = dose.lucky.sake@cloak.id diff --git a/sphinx_docs_build/source/conf.py b/sphinx_docs_build/source/conf.py index 417c668..291c251 100644 --- a/sphinx_docs_build/source/conf.py +++ b/sphinx_docs_build/source/conf.py @@ -24,7 +24,7 @@ author = "carlkidcrypto" # The full version, including alpha/beta/rc tags -release = "V2.0.0a4" +release = "V2.0.0a5" # -- General configuration ---------------------------------------------------