diff --git a/.github/workflows/build_and_release.yml b/.github/workflows/build_and_release.yml index 43fe471..8a7d0a1 100644 --- a/.github/workflows/build_and_release.yml +++ b/.github/workflows/build_and_release.yml @@ -50,7 +50,7 @@ jobs: - 'cp311-*' - 'cp312-*' - 'cp313-*' - - 'pp311-*' + - 'pp310-*' cibw_arch: ['x86_64'] timeout-minutes: 10 steps: diff --git a/httpout/__init__.py b/httpout/__init__.py index 9dcb4f4..f71a124 100644 --- a/httpout/__init__.py +++ b/httpout/__init__.py @@ -1,6 +1,6 @@ # Copyright (c) 2024 nggit -__version__ = '0.1.0' +__version__ = '0.1.1' __all__ = ('HTTPOut',) from .httpout import HTTPOut # noqa: E402