Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Fix incompatible Python version with symengine #131

Merged
merged 12 commits into from
Oct 5, 2023
8 changes: 4 additions & 4 deletions env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ channels:
- conda-forge
dependencies:
- pip
- python
- python>=3.11,<3.12
- openmp
- pip:
- cython>=3.0a1
- cython>=3.0.0
- pybind11>=2.6.2
- z3-solver
- qiskit
- z3-solver>=4.8.12.0
- qiskit>=0.42.1
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def config_cython():
description="Quartz: Superoptimization of Quantum Circuits",
zip_safe=False,
install_requires=[],
packages=find_packages(),
packages=['quartz'], # find_packages()
url='https://github.com/quantum-compiler/quartz',
ext_modules=config_cython(),
)