Skip to content

Commit c232755

Browse files
ci(update-python-version-311): update the python version to 3.11 (#17)
adds the trigger option workflow dispatch so that it could be run manually. closes #16
1 parent 97f2936 commit c232755

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/pylint.yml

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

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ "main" ]
67
pull_request:
@@ -16,7 +17,7 @@ jobs:
1617
fail-fast: false
1718
matrix:
1819
os: [ubuntu-latest]
19-
python: ["3.7", "3.8", "3.9", "3.10"]
20+
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2021
steps:
2122
- uses: actions/checkout@v3
2223
- name: Setup Python

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This project contains the abstract layer for APIMatic's core library. The purpose of creating interfaces is to separate out the functionalities needed by APIMatic's core library module. The goal is to support scalability and feature enhancement of the core library and the SDKs along with avoiding any breaking changes by reducing tight coupling between modules through the introduction of interfaces.
77

88
## Version supported
9-
Currenty APIMatic supports `Python version 3.7 - 3.10` hence the apimatic-core-interfaces will need the same versions to be supported.
9+
Currenty APIMatic supports `Python version 3.7 - 3.11` hence the apimatic-core-interfaces will need the same versions to be supported.
1010

1111
## Installation
1212
Simply run the command below in your SDK as the apimatic-core-interfaces will be added as a dependency in the SDK.

0 commit comments

Comments
 (0)