Skip to content

Commit d630ede

Browse files
committed
mv conf/common/requirements conf/
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
1 parent 30d021d commit d630ede

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

.github/workflows/Suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Generate Matrix
4747
id: generate
4848
run: |
49-
python3 -m pip install -r conf/common/requirements.txt
49+
python3 -m pip install -r conf/requirements.txt
5050
PYTHONPATH=$(pwd) python3 ./.github/workflows/scripts/generate_job_matrix.py all
5151
5252
# Symbiflow tests

.github/workflows/scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ echo
4040
echo "======================================="
4141
echo "Installing Python packages"
4242
echo "---------------------------------------"
43-
python3 -m pip install -r conf/common/requirements.txt
43+
python3 -m pip install -r conf/requirements.txt
4444
echo "---------------------------------------"
4545

4646
USE_VIVADO=""

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ install_symbiflow: | $(CONDA_ENV_PYTHON)
5555
# Adapt the environment file from symbiflow-arch-defs
5656
test -e env/symbiflow/xc7_env/xc7_environment.yml && \
5757
sed -i 's/name: xc7/name: symbiflow-env/g' env/symbiflow/xc7_env/xc7_environment.yml
58-
cat conf/common/requirements.txt conf/symbiflow/requirements.txt > env/symbiflow/xc7_env/xc7_requirements.txt
58+
cat conf/requirements.txt conf/symbiflow/requirements.txt > env/symbiflow/xc7_env/xc7_requirements.txt
5959
@$(IN_CONDA_ENV_BASE) conda env update --name symbiflow-env --file env/symbiflow/xc7_env/xc7_environment.yml
6060
# List the actual package versions installed
6161
@$(CONDA_ACTIVATE) symbiflow-env && conda list

conf/nextpnr/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ dependencies:
1919
- pip
2020
- pip:
2121
# Packages installed from PyPI
22-
- -r ../common/requirements.txt
22+
- -r ../requirements.txt
2323
- -r requirements.txt

conf/quicklogic/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ dependencies:
1313
- pip
1414
# Packages installed from PyPI
1515
- pip:
16-
- -r ../common/requirements.txt
16+
- -r ../requirements.txt
1717
- -r requirements.txt
File renamed without changes.

conf/symbiflow/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ dependencies:
88
- python=3.7
99
- pip
1010
- pip:
11-
- -r ../common/requirements.txt
11+
- -r ../requirements.txt
1212
- -r requirements.txt

results/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
-r ../conf/common/requirements.txt
1+
-r ../conf/requirements.txt
22
-e ../
33

0 commit comments

Comments
 (0)