Skip to content

Commit

Permalink
ci(update-python-version-311): update the python version to 3.11 (#17)
Browse files Browse the repository at this point in the history
adds the trigger option workflow dispatch so that it could be run manually.
closes #16
  • Loading branch information
hamzashoukat94 authored Mar 28, 2023
1 parent 97f2936 commit c232755
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Pylint Runner

on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
Expand All @@ -16,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
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.

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

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

0 comments on commit c232755

Please sign in to comment.