From 028a8d345473af3332b4adba279181e3d6ce1c39 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 06:17:35 -0500 Subject: [PATCH] Set correct build argument --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a2375e4..24baa97 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ build-job: # This job runs in the build stage, which runs first. stage: build script: - echo "Compiling the code..." - - python -m setup.py build --wheel + - python -m build --wheel - echo "Compile complete." # unit-test-job: # This job runs in the test stage.