@@ -14,23 +14,23 @@ venv:
14
14
install : venv
15
15
$(PIP ) install --upgrade pip
16
16
find . -name ' requirements.txt' -exec $(PIP ) install -r {} \;
17
- wget -O /tmp/ifcopenshell_python.zip " https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.3-260bc80 -linux64.zip"
17
+ wget -O /tmp/ifcopenshell_python.zip " https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.4-6924012 -linux64.zip"
18
18
mkdir -p $(VIRTUAL_ENV ) /lib/python3.11/site-packages
19
19
unzip -f -d $(VIRTUAL_ENV ) /lib/python3.11/site-packages /tmp/ifcopenshell_python.zip
20
20
rm /tmp/ifcopenshell_python.zip
21
21
22
22
install-macos : venv
23
23
find . -name ' requirements.txt' -exec $(PIP ) install -r {} \;
24
24
$(PIP ) install -r requirements.txt
25
- wget -O /tmp/ifcopenshell_python.zip " https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.3-260bc80 -macos64.zip"
25
+ wget -O /tmp/ifcopenshell_python.zip " https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.4-6924012 -macos64.zip"
26
26
mkdir -p $(VIRTUAL_ENV ) /lib/python3.11/site-packages
27
27
unzip /tmp/ifcopenshell_python.zip -d $(VIRTUAL_ENV ) /lib/python3.11/site-packages
28
28
rm /tmp/ifcopenshell_python.zip
29
29
30
30
install-macos-m1 : venv
31
31
find . -name ' requirements.txt' -exec $(PIP ) install -r {} \;
32
32
$(PIP ) install -r requirements.txt
33
- wget -O /tmp/ifcopenshell_python.zip " https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.3-260bc80 -macosm164.zip"
33
+ wget -O /tmp/ifcopenshell_python.zip " https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.4-6924012 -macosm164.zip"
34
34
mkdir -p $(VIRTUAL_ENV ) /lib/python3.11/site-packages
35
35
unzip /tmp/ifcopenshell_python.zip -d $(VIRTUAL_ENV ) /lib/python3.11/site-packages
36
36
rm /tmp/ifcopenshell_python.zip
@@ -66,7 +66,7 @@ stop-worker:
66
66
-$(PYTHON ) -m celery -A core control shutdown \
67
67
--destination=worker@$(shell hostname) || true
68
68
69
- test : test-models test-bsdd-task test- header-validation-task test-syntax-task test-syntax-header-validation-task test-schema-task
69
+ test : test-models test-header-validation-task test-syntax-task test-syntax-header-validation-task test-schema-task
70
70
71
71
test-models :
72
72
MEDIA_ROOT=./apps/ifc_validation/fixtures $(PYTHON ) manage.py test apps/ifc_validation_models --settings apps.ifc_validation_models.test_settings --debug-mode --verbosity 3
0 commit comments