Merge pull request #1452 from iorisa/feature/README.md

feat: + python <3.12
This commit is contained in:
Alexander Wu 2024-10-11 13:35:49 +08:00 committed by GitHub
commit 5be77dfd73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ ## Get Started
### Installation
> Ensure that Python 3.9+ is installed on your system. You can check this by using: `python --version`.
> Ensure that Python 3.9 or later, but less than 3.12, is installed on your system. You can check this by using: `python --version`.
> You can use conda like this: `conda create -n metagpt python=3.9 && conda activate metagpt`
```bash

View file

@ -109,7 +109,7 @@ setup(
license="MIT",
keywords="metagpt multi-agent multi-role programming gpt llm metaprogramming",
packages=find_packages(exclude=["contrib", "docs", "examples", "tests*"]),
python_requires=">=3.9",
python_requires=">=3.9, <3.12",
install_requires=requirements,
extras_require=extras_require,
cmdclass={