Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM --platform=linux/amd64 python:3.12-slim

WORKDIR /workspace

Expand All @@ -14,8 +14,8 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
# Copy project files
COPY . .

# Install dependencies
RUN uv pip install --system -e .
# Install dependencies (dynamic deps need pip)
RUN uv pip install --system . && pip install cudaq

EXPOSE 8888

Expand Down
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install -e .
```

**Using conda:**
```bash
conda env create -f environment.yml
```

### Running Notebooks

**Jupyter:**
Expand Down
24 changes: 0 additions & 24 deletions environment.yml

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies = [
"cirq-ionq>=1.0.0",
"pennylane>=0.30.0",
"pennylane-ionq>=0.30.0",
"projectq>=0.8.0",
# "projectq>=0.8.0", # fails to build on Python 3.12+
"cudaq>=0.6.0",

# Visualization and utilities
Expand Down
Loading