From 7faf7c34ee6e194560cc70cf80a5de480d0d1a60 Mon Sep 17 00:00:00 2001 From: Harmon Date: Sun, 17 Dec 2023 05:22:43 -0600 Subject: [PATCH] Update to Python 3.11.5 --- .appveyor.yml | 6 +++--- .circleci/config.yml | 2 +- .gitlab-ci.yml | 4 ++-- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 32f7d3c519..c57f407719 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 1.37.0-{build} +version: 1.38.0-{build} skip_branch_with_pr: true @@ -10,12 +10,12 @@ environment: - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 PLATFORM: Discord PYTHON: C:\Python311-x64 - PYTHON_VERSION: 3.11.4 + PYTHON_VERSION: 3.11.5 PYTHON_ARCH: 64 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 PLATFORM: Telegram PYTHON: C:\Python311-x64 - PYTHON_VERSION: 3.11.4 + PYTHON_VERSION: 3.11.5 PYTHON_ARCH: 64 - APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004 PLATFORM: Discord diff --git a/.circleci/config.yml b/.circleci/config.yml index 94ab0e8446..8dfaa131d8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ version: 2 jobs: test-python: docker: - - image: cimg/python:3.11.4 + - image: cimg/python:3.11.5 - image: postgres:12.1 environment: POSTGRES_USER: harmonbot diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3caf872550..f910f57f4f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,7 @@ variables: Discord: # Official language image. Look for the different tagged releases at: # https://hub.docker.com/r/library/python/tags/ - image: python:3.11.4 + image: python:3.11.5 services: - postgres:12.1 # Pip's cache doesn't store the python packages @@ -35,7 +35,7 @@ Discord: Telegram: # Official language image. Look for the different tagged releases at: # https://hub.docker.com/r/library/python/tags/ - image: python:3.11.4 + image: python:3.11.5 # Pip's cache doesn't store the python packages # https://pip.pypa.io/en/stable/reference/pip_install/#caching # If you want to also cache the installed packages, you have to install diff --git a/pyproject.toml b/pyproject.toml index 95e5c8208c..f6249569f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "Harmonbot" dynamic = ["version"] -requires-python = "~=3.11.4" +requires-python = "~=3.11.5" [build-system] requires = ["setuptools==69.0.2", "setuptools-scm==8.0.4"]