Skip to content

Commit b5c57c1

Browse files
committed
try different approach
1 parent 10649f4 commit b5c57c1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
with:
1313
python-version: "3.12"
1414
- name: Install dependencies
15-
run: python -m pip install -e .
15+
run: python -m pip install -r pyproject.toml
1616
- name: Test
1717
run: pytest

.github/workflows/check_links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
with:
1313
python-version: "3.12"
1414
- name: Install dependencies
15-
run: python -m pip install -e .
15+
run: python -m pip install -r pyproject.toml
1616
- name: Check broken links
1717
run: sphinx-build -nW -b linkcheck . _build

.github/workflows/generate_grants.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
python-version: "3.12"
1717
- name: Install dependencies
18-
run: python -m pip install -e .
18+
run: python -m pip install -r pyproject.toml
1919
- name: Generate the list of grants
2020
run: python _scripts/generate_grants.py > ./operations/grants.rst
2121
env:

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Když toho upravujete víc, nebo máte zálusk na nějaké složitější kejkle
1717

1818
#. Stáhněte projekt: ``git clone https://github.com/pyvec/docs.pyvec.org.git``
1919
#. Vytvořte si a aktivujte virtuální prostředí
20-
#. Nainstalujte do prostředí závislosti: ``python -m pip install -e .``
20+
#. Nainstalujte do prostředí závislosti: ``python -m pip install -r pyproject.toml``
2121

2222
Běžná práce
2323
-----------

0 commit comments

Comments
 (0)