File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 67
67
68
68
REPORT :
69
69
needs : [BUILD, TEST]
70
+ if : success() || failure()
70
71
uses : ./.github/workflows/report.yml
71
72
with :
72
73
label : rh-reporter
Original file line number Diff line number Diff line change 1
1
.PHONY : build docs test
2
2
3
- BUILD_ARGS := # set nightly to build nightly release
3
+ BUILD_ARGS := dev # set nightly to build nightly release
4
4
PYCHECKDIRS := src tests
5
5
PYCHECKGLOBS := 'src/**/*.py' 'tests/**/*.py' 'utils/**/*.py' 'examples/**/*.py' setup.py
6
6
# run checks on all files for the repo
@@ -28,10 +28,10 @@ test:
28
28
# creates wheel file
29
29
build :
30
30
@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;
32
32
33
33
# clean package
34
34
clean :
35
35
@echo " Cleaning up" ;
36
36
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;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ pip install compressed-tensors
31
31
32
32
Nightly release:
33
33
``` bash
34
- pip install compressed-tensors-nightly
34
+ pip install --pre compressed-tensors
35
35
```
36
36
37
37
### From Source
You can’t perform that action at this time.
0 commit comments