diff --git a/ci/django.yml b/ci/django.yml index 0503635290..5b5e49e4af 100644 --- a/ci/django.yml +++ b/ci/django.yml @@ -13,7 +13,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.7, 3.8, 3.9] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/ci/pylint.yml b/ci/pylint.yml index c73e032c0f..81a824eb7d 100644 --- a/ci/pylint.yml +++ b/ci/pylint.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/code-scanning/mobsf.yml b/code-scanning/mobsf.yml index 05e014e9d4..805e97e4cf 100644 --- a/code-scanning/mobsf.yml +++ b/code-scanning/mobsf.yml @@ -28,9 +28,9 @@ jobs: - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: "3.13" - name: Run mobsfscan uses: MobSF/mobsfscan@a60d10a83af68e23e0b30611c6515da604f06f65 diff --git a/deployments/azure-functions-app-python.yml b/deployments/azure-functions-app-python.yml index 2c50d8ac93..ecdaba7134 100644 --- a/deployments/azure-functions-app-python.yml +++ b/deployments/azure-functions-app-python.yml @@ -25,7 +25,7 @@ on: env: AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your function app project, defaults to the repository root - PYTHON_VERSION: '3.9' # set this to the python version to use (e.g. '3.6', '3.7', '3.8') + PYTHON_VERSION: '3.13' # set this to the python version to use (e.g. '3.11', '3.12', '3.13') jobs: build-and-deploy: diff --git a/deployments/azure-webapps-python.yml b/deployments/azure-webapps-python.yml index 656f95c9a0..00bfad89f7 100644 --- a/deployments/azure-webapps-python.yml +++ b/deployments/azure-webapps-python.yml @@ -21,7 +21,7 @@ name: Build and deploy Python app to Azure Web App env: AZURE_WEBAPP_NAME: your-app-name # set this to the name of your Azure Web App - PYTHON_VERSION: '3.8' # set this to the Python version to use + PYTHON_VERSION: '3.13' # set this to the Python version to use (e.g. '3.11', '3.12', '3.13') on: push: