Skip to content

Commit 6e55742

Browse files
merge requirements
1 parent 00cfe08 commit 6e55742

File tree

9 files changed

+8
-7
lines changed

9 files changed

+8
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- name: install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
21-
pip install --no-cache-dir -r requirements.txt
22-
pip install --no-cache-dir -r requirements-dev.txt
21+
pip install --no-cache-dir -r requirements/requirements.txt
22+
pip install --no-cache-dir -r requirements/requirements-dev.txt
2323
- name: black linter
2424
run: |
2525
black . --check

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<img src="https://img.shields.io/github/workflow/status/tencent-quantum-lab/tensorcircuit/ci/master?logo=github&style=flat-square&logo=github" />
1111
</a>
1212
<!-- docs -->
13-
<a href="">
13+
<a href="https://tensorcircuit.readthedocs.io/">
1414
<img src="https://img.shields.io/badge/docs-link-green.svg?style=flat-square&logo=read-the-docs"/>
1515
</a>
1616
<!-- PyPI -->

README_cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<img src="https://img.shields.io/github/workflow/status/tencent-quantum-lab/tensorcircuit/ci/master?logo=github&style=flat-square&logo=github" />
77
</a>
88
<!-- docs -->
9-
<a href="">
9+
<a href="https://tensorcircuit.readthedocs.io/">
1010
<img src="https://img.shields.io/badge/docs-link-green.svg?style=flat-square&logo=read-the-docs"/>
1111
</a>
1212
<!-- PyPI -->

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN conda install -y \
2929
pip \
3030
python=3.8
3131

32-
COPY requirements-docker.txt /app/requirements-docker.txt
32+
COPY requirements/requirements-docker.txt /app/requirements-docker.txt
3333

3434
RUN pip install -r /app/requirements-docker.txt
3535

docs/source/contribution.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ The following git workflow is recommended for contribution by PR:
4343

4444
.. code-block:: bash
4545
46-
pip install -r requirements.txt
47-
pip install -r requirements-dev.txt
46+
pip install -r requirements/requirements.txt
47+
pip install -r requirements/requirements-dev.txt
4848
4949
Extra packages may be required for specific development tasks.
5050

File renamed without changes.
File renamed without changes.

requirements-rtd.txt renamed to requirements/requirements-rtd.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ networkx
88
jax
99
optax
1010
sphinx>=4.0
11+
ipykernel
1112
furo
1213
sphinx-copybutton
1314
nbsphinx
File renamed without changes.

0 commit comments

Comments
 (0)