Skip to content

Commit 545e426

Browse files
authored
fix a few issues (#294)
1 parent 3f31c7a commit 545e426

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767

6868
REPORT:
6969
needs: [BUILD, TEST]
70+
if: success() || failure()
7071
uses: ./.github/workflows/report.yml
7172
with:
7273
label: rh-reporter

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: build docs test
22

3-
BUILD_ARGS := # set nightly to build nightly release
3+
BUILD_ARGS := dev # set nightly to build nightly release
44
PYCHECKDIRS := src tests
55
PYCHECKGLOBS := 'src/**/*.py' 'tests/**/*.py' 'utils/**/*.py' 'examples/**/*.py' setup.py
66
# run checks on all files for the repo
@@ -28,10 +28,10 @@ test:
2828
# creates wheel file
2929
build:
3030
@echo "Building the wheel for the repository";
31-
python3 setup.py sdist bdist_wheel $(BUILD_ARGS);
31+
BUILD_TYPE=$(BUILD_ARGS) python3 setup.py sdist bdist_wheel;
3232

3333
# clean package
3434
clean:
3535
@echo "Cleaning up";
3636
rm -rf .pytest_cache;
37-
find $(PYCHECKDIRS) | grep -E "(__pycache__|\.pyc|\.pyo)" | xargs rm -rf;
37+
find $(PYCHECKDIRS) | grep -E "(__pycache__|\.pyc|\.pyo)" | xargs rm -rf;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pip install compressed-tensors
3131

3232
Nightly release:
3333
```bash
34-
pip install compressed-tensors-nightly
34+
pip install --pre compressed-tensors
3535
```
3636

3737
### From Source

0 commit comments

Comments
 (0)