Skip to content
This repository was archived by the owner on Jan 7, 2024. It is now read-only.

Commit 5707867

Browse files
committed
Vendorize as 3stack-docx using post-release numbers.
1 parent 348e896 commit 5707867

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

.travis.yml

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
language: python
22
python:
3-
- "3.4"
4-
- "3.3"
5-
- "2.7"
6-
- "2.6"
7-
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
8-
install: pip install -r requirements.txt
9-
# command to run tests, e.g. python setup.py test
10-
script: py.test
3+
- '2.7'
4+
install: python setup.py install
5+
script:
6+
- py.test
7+
- python setup.py bdist_wheel --universal
8+
- ls dist/*.whl
9+
sudo: false
10+
deploy:
11+
provider: releases
12+
api_key:
13+
secure: qnIY0YjNaam3eOsSUry3DIuQPmyBPeRQZHop3tIpifJdj93KPkW4XjkBae6Uj2oejUoaBP6Oyx0x5/iLpLBfFlbOaOPbT3j6+afCmDZJB1aQf5wmsj+WPnibtc1olDMrSCa6mpuBUat8n6lL14QU4UtnkRcT2KPH32ZvtMSJu4sHUGn4jVBku/AUiyveEJO4F4YMd6sPhX1Ybx+2SdphDM/PFrS7ikM4bs5nI2fEWoN2ixRC7kXEyOiM8urDfYQJd+2GeR5QI3EveERZX5j62PezoNBZ0GW9qGrJ/d7wyfZS8o+pez/XVej2FJRu9kj6vEW8YQ0SRiCiW6E0JNRIIMgJuu6QvfR0PNJ8VdnSnITWpAlHDSOSwmm8ayMJ/tbqiPthFTgCl6TZ9I+Hd3eUIufnHu4nNmwG5Wjsm4yoInMWcVir11wHexhw+GVc8NET265wjJnuLi/gE0sKwpmQjKeXwjBeYUoR+5J7UYiKKQu7F5e5O+kUrrJbMiyZf5kpnD1vvfRZm4/rg8Pr5pKCL34XGmlL+uVm8ktOcZuPCJnd4L9EztpmlrVAEHu7WGc9j2/Yl2OsvIaD7OfD0WckefjE9om6YYkLMpzn+vyyg97r6s4+RZgDHjvuoj1hGPCrfe4BuFMWsQk6ieozqpQCCmV6j99Icc5iHDdgH8Uu/LA=
14+
file: dist/*.whl
15+
file_glob: true
16+
skip_cleanup: true
17+
on:
18+
tags: true
19+
repo: 3stack-software/python-docx

docx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from docx.api import Document # noqa
44

5-
__version__ = '0.7.6'
5+
__version__ = '0.7.6.post1'
66

77

88
# register custom Part classes with opc package reader

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def text_of(relpath):
2525
).group(1)
2626

2727

28-
NAME = 'python-docx'
28+
NAME = '3stack-docx'
2929
VERSION = version
3030
DESCRIPTION = 'Create and update Microsoft Word .docx files.'
3131
KEYWORDS = 'docx office openxml word'

0 commit comments

Comments
 (0)