File tree Expand file tree Collapse file tree 3 files changed +3
-10
lines changed Expand file tree Collapse file tree 3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 846
846
847
847
.. |Build Status | image :: https://github.com/Suor/django-cacheops/actions/workflows/ci.yml/badge.svg
848
848
:target: https://github.com/Suor/django-cacheops/actions/workflows/ci.yml?query=branch%3Amaster
849
-
850
-
851
- .. |Gitter | image :: https://badges.gitter.im/JoinChat.svg
852
- :alt: Join the chat at https://gitter.im/Suor/django-cacheops
853
- :target: https://gitter.im/Suor/django-cacheops?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
Original file line number Diff line number Diff line change 5
5
NAME=django-cacheops
6
6
VERSION=` awk ' /__version__ = /{gsub(/' \' ' /, "", $3); print $3}' cacheops/__init__.py`
7
7
8
+ echo " Publishing $NAME -$VERSION ..."
8
9
python setup.py sdist bdist_wheel
9
10
twine check dist/$NAME -$VERSION *
10
11
twine upload --skip-existing -uSuor dist/$NAME -$VERSION *
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
3
4
- # Remove build status and move Gitter link under title for PyPi
5
- README = open ('README.rst' ).read () \
6
- .replace ('|Build Status|' , '' , 1 ) \
7
- .replace ('|Gitter|' , '' , 1 ) \
8
- .replace ('===\n ' , '===\n \n |Gitter|\n ' )
4
+ # Remove build status
5
+ README = open ('README.rst' ).read ().replace ('|Build Status|' , '' , 1 )
9
6
10
7
11
8
setup (
You can’t perform that action at this time.
0 commit comments