File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 33
33
- name : Install dependencies
34
34
run : |
35
35
pip3 install -r requirements.txt
36
- pip3 install -r requirements-dev.txt
36
+ pip3 install -r requirements-dev.txt --use-deprecated=legacy-resolver
37
37
pip3 install --editable .
38
38
- name : Execute Python unit tests for code coverage
39
39
if : matrix.python-version == '3.5'
Original file line number Diff line number Diff line change 37
37
- name : Install dependencies
38
38
run : |
39
39
pip3 install -r requirements.txt
40
- pip3 install -r requirements-dev.txt
40
+ pip3 install -r requirements-dev.txt --use-deprecated=legacy-resolver
41
41
pip3 install --editable .
42
42
- name : Install Semantic Release dependencies
43
43
run : |
64
64
GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
65
65
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
66
66
run : npx semantic-release # --dry-run
67
+ - name : Build binary wheel and a source tarball
68
+ run : python setup.py sdist
67
69
- name : Publish a Python distribution to PyPI # must have built dist before
68
70
if : github.event.workflow_run.conclusion == 'success' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
69
71
uses : pypa/gh-action-pypi-publish@master
You can’t perform that action at this time.
0 commit comments