File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,7 @@ language: python
4
4
5
5
python :
6
6
- ' 2.7'
7
- - ' 3.4'
8
-
9
- virtualenv :
10
- system_site_packages : true
7
+ - ' 3.6'
11
8
12
9
addons :
13
10
apt :
@@ -53,8 +50,7 @@ before_script:
53
50
script :
54
51
# cd into test directory to make sure we're using the pip-installed
55
52
# matplotlib2tikz.
56
- - cd test
57
- - MPLBACKEND=Agg pytest --cov matplotlib2tikz
53
+ - cd test && MPLBACKEND=Agg pytest --cov matplotlib2tikz
58
54
59
55
after_success :
60
56
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ README.rst: README.md
13
13
python setup.py check -r -s || exit 1
14
14
15
15
upload : setup.py README.rst
16
- python setup.py sdist upload --sign
16
+ rm -f dist/*
17
+ python setup.py bdist_wheel --universal
18
+ gpg --detach-sign -a dist/*
19
+ twine upload dist/*
17
20
18
21
tag :
19
22
@echo " Tagging v$( VERSION) ..."
Original file line number Diff line number Diff line change 5
5
__copyright__ = 'Copyright (c) 2010-2017, %s <%s>' % (__author__ , __email__ )
6
6
__credits__ = []
7
7
__license__ = 'License :: OSI Approved :: MIT License'
8
- __version__ = '0.6.3 '
8
+ __version__ = '0.6.4 '
9
9
__maintainer__ = u'Nico Schlömer'
10
10
__status__ = 'Development Status :: 5 - Production/Stable'
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
#
3
- from distutils . core import setup
3
+ from setuptools import setup
4
4
import os
5
5
import codecs
6
6
You can’t perform that action at this time.
0 commit comments