From c232755e52032e66243832f4b98164e2c0bc6933 Mon Sep 17 00:00:00 2001 From: Hamza Shoukat <50887243+hamzashoukat94@users.noreply.github.com> Date: Wed, 29 Mar 2023 00:18:10 +0500 Subject: [PATCH] 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 --- .github/workflows/pylint.yml | 3 ++- README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index e7c5d4a..3c5e7d1 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,6 +1,7 @@ name: Pylint Runner on: + workflow_dispatch: push: branches: [ "main" ] pull_request: @@ -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 diff --git a/README.md b/README.md index def4b18..bce5006 100644 --- a/README.md +++ b/README.md @@ -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.