File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,12 @@ jobs:
35
35
[ $GITHUB_EVENT_NAME == 'push' ] && VERSION+=b && VERSION+=$(($(git tag -l "*$VERSION*" | cut -db -f2 | sort -n | tail -1)+1))
36
36
sed -ie "s/version = .*/version = $VERSION/" setup.cfg
37
37
python -m pip install --upgrade pip
38
- pip install -r requirements.txt
39
- pip install build
40
- echo ::set-output name=version::$VERSION
38
+ pip install -U pip setuptools
39
+ pip install -r requirements-dev.txt
40
+ pip install -r requirements-iris.txt
41
+ echo version=$VERSION >> $GITHUB_OUTPUT
41
42
NAME="django_iris"-${VERSION}-py3-none-any
42
- echo ::set-output name=name:: $NAME
43
+ echo name=$NAME >> $GITHUB_OUTPUT
43
44
- name : Build package
44
45
run : ./scripts/build-dist.sh
45
46
- name : Publish package
Original file line number Diff line number Diff line change
1
+ wheel
2
+ flake8
3
+ pytest
4
+ black
5
+ twine
You can’t perform that action at this time.
0 commit comments