diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 476da597..ef01dae2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.11" - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 81a0b42d..60ea428c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,12 +11,12 @@ jobs: cicd-pipeline: strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] os: [ubuntu-latest] include: - - python-version: "3.10" + - python-version: "3.11" os: macos-latest - - python-version: "3.10" + - python-version: "3.11" os: windows-latest uses: ./.github/workflows/reusable-main.yml with: diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index c86d8787..4b68eb04 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/setup.py b/setup.py index fcf64bca..177722b0 100644 --- a/setup.py +++ b/setup.py @@ -61,6 +61,7 @@ def main(): 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Scientific/Engineering',