Skip to content

Commit ac181bc

Browse files
committed
version 3.0.2
1 parent db6cdd8 commit ac181bc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

scripts/deploy_to_prod_pypi_org.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cd ${script_dir}/..
55
rm -rf ./slackeventsapi.egg-info
66

77
pip install -U pip && \
8-
pip install twine wheel && \
8+
pip install twine wheel setuptools && \
99
rm -rf dist/ build/ slackeventsapi.egg-info/ && \
1010
python setup.py sdist bdist_wheel && \
1111
twine check dist/* && \

scripts/run_clean_test.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/bin/bash
22
pip install -U pip && \
33
pip freeze | grep -v '-e' | xargs pip uninstall -y && \
4-
pip install MarkupSafe && \
5-
python setup.py install && \
4+
pip install -e . && \
65
pip install -r requirements-dev.txt && \
76
pytest tests

slackeventsapi/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# see: http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers
2-
__version__ = '3.0.1'
2+
__version__ = '3.0.2'

0 commit comments

Comments
 (0)