diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index d8a0da8b..84a101e8 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -12,8 +12,9 @@ jobs: python-version: '3.12' architecture: 'x64' - name: Install Pylint + # TODO: #210 - install the latest pylint below run: | python -m pip install --upgrade pip - pip install pylint + pip install 'pylint<3' - name: Pylint check run: dev_tools/pylint diff --git a/setup.py b/setup.py index 55dd99a3..605b2157 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def _parse_requirements(path: pathlib.Path): url="http://github.com/quantumlib/unitary", author="Quantum AI team and collaborators", author_email="quantum-chess-engineering@googlegroups.com", - python_requires=">=3.12.0", + python_requires=">=3.10.0", install_requires=install_requires, license="Apache 2", description="",