From f87da9b75eb6207eb9ff2d2cf55a8a542b0d53a7 Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Wed, 27 Mar 2024 15:00:32 -0700 Subject: [PATCH] Remove 3.9 support --- .github/workflows/test.yml | 2 +- README.md | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d0f8e7ab4..f5b936406 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.10", "3.11", "3.12" ] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index 2a90f7f03..a319a9c84 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ A vanilla, up-to-date fork of [ComfyUI](https://github.com/comfyanonymous/comfyu You must have Python 3.10, 3.11 or 3.12 installed. On Windows, download the latest Python from their website. You can also [directly download 3.11.4 here](https://www.python.org/ftp/python/3.11.4/python-3.11.4-amd64.exe). -On macOS, install exactly Python 3.11 using `brew`, which you can download from https://brew.sh, using this command: `brew install python@3.11`. Do not use 3.9 or older, and do not use 3.12 or newer. Its compatibility with Stable Diffusion in both directions is broken. +On macOS, install Python 3.10, 3.11 or 3.12 using `brew`, which you can download from https://brew.sh, using this command: `brew install python@3.10`. Do not use 3.9 or older. Its compatibility with Stable Diffusion in both directions is broken. 1. Create a virtual environment: ```shell diff --git a/setup.py b/setup.py index 4b50080ed..65e67ec93 100644 --- a/setup.py +++ b/setup.py @@ -174,7 +174,7 @@ setup( description="", author="", version=version, - python_requires=">=3.9,<3.13", + python_requires=">=3.10,<3.13", packages=find_packages(exclude=["tests"] + [] if is_editable else ['custom_nodes']), include_package_data=True, install_requires=dependencies(),