File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cd ${script_dir}/..
5
5
rm -rf ./slackeventsapi.egg-info
6
6
7
7
pip install -U pip && \
8
- pip install twine wheel && \
8
+ pip install twine wheel setuptools && \
9
9
rm -rf dist/ build/ slackeventsapi.egg-info/ && \
10
10
python setup.py sdist bdist_wheel && \
11
11
twine check dist/* && \
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
pip install -U pip && \
3
3
pip freeze | grep -v ' -e' | xargs pip uninstall -y && \
4
- pip install MarkupSafe && \
5
- python setup.py install && \
4
+ pip install -e . && \
6
5
pip install -r requirements-dev.txt && \
7
6
pytest tests
Original file line number Diff line number Diff line change 1
1
# see: http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers
2
- __version__ = '3.0.1 '
2
+ __version__ = '3.0.2 '
You can’t perform that action at this time.
0 commit comments