We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6cdd8 commit ac181bcCopy full SHA for ac181bc
3 files changed
scripts/deploy_to_prod_pypi_org.sh
@@ -5,7 +5,7 @@ cd ${script_dir}/..
5
rm -rf ./slackeventsapi.egg-info
6
7
pip install -U pip && \
8
- pip install twine wheel && \
+ pip install twine wheel setuptools && \
9
rm -rf dist/ build/ slackeventsapi.egg-info/ && \
10
python setup.py sdist bdist_wheel && \
11
twine check dist/* && \
scripts/run_clean_test.sh
@@ -1,7 +1,6 @@
1
#!/bin/bash
2
3
pip freeze | grep -v '-e' | xargs pip uninstall -y && \
4
-pip install MarkupSafe && \
-python setup.py install && \
+pip install -e . && \
pip install -r requirements-dev.txt && \
pytest tests
slackeventsapi/version.py
@@ -1,2 +1,2 @@
# see: http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers
-__version__ = '3.0.1'
+__version__ = '3.0.2'
0 commit comments