Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Commit f66fa44

Browse files
committed
Potential fix for CI/CD
1 parent c9cc0c7 commit f66fa44

File tree

4 files changed

+147
-969
lines changed

4 files changed

+147
-969
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ tests:
1717
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude cme/thirdparty/*,cme/data/*
1818

1919
reqs:
20-
poetry export -f requirements.txt -o requirements.txt
21-
poetry export --dev -f requirements.txt -o requirements-dev.txt
20+
poetry export --without-hashes -f requirements.txt -o requirements.txt
21+
poetry export --without-hashes --dev -f requirements.txt -o requirements-dev.txt

build_collector.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ def build_cme():
2525
shutil.rmtree("bin")
2626
shutil.copytree("cme", "build/cme")
2727

28-
subprocess.check_call(
28+
subprocess.run(
2929
[sys.executable, "-m", "pip", "install", "-r", "requirements.txt" ,"-t", "build"],
30-
stdout=sys.stdout,
31-
stderr=subprocess.STDOUT,
30+
check=True
3231
)
3332

3433
#[shutil.rmtree(p) for p in Path("build").glob("**/__pycache__")]

0 commit comments

Comments
 (0)