Skip to content

Commit

Permalink
Merge pull request #209 from pavoljuhas/allow-python-3.10
Browse files Browse the repository at this point in the history
Allow installation to Python 3.10 environment
  • Loading branch information
dstrain115 authored Oct 4, 2024
2 parents 378add5 + d52ac85 commit 00dbc77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _parse_requirements(path: pathlib.Path):
url="http://github.com/quantumlib/unitary",
author="Quantum AI team and collaborators",
author_email="[email protected]",
python_requires=">=3.12.0",
python_requires=">=3.10.0",
install_requires=install_requires,
license="Apache 2",
description="",
Expand Down

0 comments on commit 00dbc77

Please sign in to comment.