From ac7b0539a00b8d746bfe0862cab463aadb8487b8 Mon Sep 17 00:00:00 2001 From: Corey Regan Date: Tue, 30 Jan 2024 23:34:00 -0800 Subject: [PATCH] Run tests on Python 3.11 & now also Python 3.12 --- .github/workflows/testing.yml | 9 +++++---- paddle_billing_python_sdk/__VERSION__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 9f19381..14f32c7 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -10,14 +10,15 @@ on: jobs: test: runs-on: ubuntu-latest - environment: dev + strategy: + matrix: + python-version: [ '3.11', '3.12' ] steps: - uses: actions/checkout@v4 - - name: Set up Python - id: setup_python + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/paddle_billing_python_sdk/__VERSION__.py b/paddle_billing_python_sdk/__VERSION__.py index 9004f3a..3bb16e0 100644 --- a/paddle_billing_python_sdk/__VERSION__.py +++ b/paddle_billing_python_sdk/__VERSION__.py @@ -1 +1 @@ -__VERSION__ = '0.0.1a80' +__VERSION__ = '0.0.1a81' diff --git a/setup.py b/setup.py index 2ee9adb..a2fa22d 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ classifiers = [ # Full list: https://pypi.org/classifiers/ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3',