Skip to content

Commit 40e6582

Browse files
docs: compatibility with python 3.12 and 3.13 (#85)
1 parent ce3dd39 commit 40e6582

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pylint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Pylint Runner
22

3-
on:
3+
on:
44
workflow_dispatch
55

66
jobs:
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest]
13-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
13+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Setup Python
@@ -33,5 +33,5 @@ jobs:
3333
run: |
3434
for file in $(find -name '*.py')
3535
do
36-
pylint --disable=R,C,W "$file" --fail-under=10;
36+
pylint --disable=R,C,W "$file" --fail-under=10;
3737
done

.github/workflows/test-runner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
19+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: Setup Python
@@ -33,7 +33,7 @@ jobs:
3333
- name: Generate coverage report
3434
run: coverage xml
3535
- name: Upload coverage report
36-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python == '3.11' && github.actor != 'dependabot[bot]' }}
36+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python == '3.13' && github.actor != 'dependabot[bot]' }}
3737
uses: paambaati/codeclimate-action@v3.0.0
3838
env:
3939
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_TEST_REPORTER_ID }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The APIMatic Core libraries provide a stable runtime that powers all the functio
99

1010

1111
## Installation
12-
You will need Python 3.7-3.11 to support this package.
12+
You will need Python 3.7+ to support this package.
1313

1414
Simply run the command below to install the core library in your SDK. The core library will be added as a dependency your SDK.
1515

0 commit comments

Comments
 (0)