Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Run tests on Python 3.11 & now also Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Invincibear committed Jan 31, 2024
1 parent f717cf1 commit ac7b053
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion paddle_billing_python_sdk/__VERSION__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = '0.0.1a80'
__VERSION__ = '0.0.1a81'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit ac7b053

Please sign in to comment.