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

Drop dependency on distutils #651

Merged
merged 14 commits into from
Jan 24, 2024
2 changes: 1 addition & 1 deletion pybind_interface/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM qsim

# Install additional requirements
RUN apt-get install -y python3-dev python3-pybind11 python3-pip python3-venv
RUN apt-get install -y python3-dev python3-pybind11 python3-pip python3-venv python3-packaging

# Create venv to avoid collision between system packages (e.g. numpy) and Cirq's deps.
RUN python3 -m venv test_env
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion
from packaging.version import parse


class CMakeExtension(Extension):
Expand All @@ -27,7 +27,7 @@ def run(self):
)

if platform.system() == "Windows":
cmake_version = LooseVersion(
cmake_version = parse(
re.search(r"version\s*([\d.]+)", out.decode()).group(1)
)
if cmake_version < "3.1.0":
NoureldinYosri marked this conversation as resolved.
Show resolved Hide resolved
NoureldinYosri marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading