Skip to content

Commit 7fef697

Browse files
authored
Bump version to 0.2.0, publish using Python 3.8 (#8)
* Bump version to 0.2.0, publish using Python 3.8 * Unpin Python interpreter used for coverage & docs * Fixup language in README.rst
1 parent 685dc2b commit 7fef697

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ python:
66
- 3.7
77
- 3.8
88
- pypy
9-
109
matrix:
1110
include:
12-
- python: 3.6
11+
- python: 3.8
1312
env:
1413
- TOXENV=coverage
1514
- NO_DEPLOY=1
16-
- python: 3.6
15+
- python: 3.8
1716
env:
1817
- TOXENV=documentation
1918
- NO_DEPLOY=1
@@ -30,7 +29,7 @@ deploy:
3029
file_glob: true
3130
file: dist/*
3231
on:
33-
python: "3.6"
32+
python: 3.8
3433
tags: true
3534
repo: robodair/pydocstring
3635
condition: $NO_DEPLOY != 1
@@ -41,6 +40,6 @@ deploy:
4140
password:
4241
secure: rBgaXD7HKbpiL/n21zZW/d+cKFwtbgM32xiAbM1DNz424BwLBBQK7urTMob4hdC+66PFAdZJU/Jr83M29P3t0tndn09ZeJ5rpnKlWSnpwzMCAFb/lxsWd0kuuchVx22rEnG8tsUtSXMMzWLegAdp14JO3POx4LtzX7kBbh+4Fv+F9ai5FO2K0fUFj0tv6W8s/GPJQxXJTMYYS09uVWI6ayHOvVNaLuITxfivQwy4ZO/UWlSCl92DozB0FA4ynZVle/8tI1pWspKMG/txwzSYfH6KMD/pDiOt61KKbenrD/6DIjjvN4OxVlV6w2XCCCAPLOZ6NooOTA0+Mkr+9tVd+WeALaBHopMqPbhXpiN230GkRWeonxLgMcjjr03O0+mXFr2CIqO4A6yV8Mxx+y3TJssR/wJsxnrdqby2usS6CHexaIR1Ui82b0XgOdaR6duxRDnhVHLWdxDTrkcAvmPANGObS5gDV3NwMaihLoSa+kIHxCqPtyEmo+MueXXue0o8q4RA0AOvNdgs7mQtIDSzrYRmMA23xVJoWPVInLLgPTHEw2EOUJyW6lC5qKkqmj1uH3r7XoAKAsXf9q1M6r/606If+Ic7J8C+IJiiaUQAEBiASkqLWsy76gLsKzpFWU3veufDnrSW2UEbNrZzN38L1YYogM4YMj9dTnz0nMZaW64=
4342
on:
44-
python: "3.6"
43+
python: 3.8
4544
branch: master
4645
condition: $NO_DEPLOY != 1

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This project can be wrapped by an editor extension to provide docstrings as auto
3333
Status
3434
======
3535

36-
Ready for basic use - Supports **Google**, **Numpy**, and **reST** docstring formats are supported, and it's pretty simple to create your own formatter.
36+
Ready for basic use - Supports **Google**, **Numpy**, and **reST** docstring formats, and it's pretty simple to create your own formatter.
3737

3838
Types are able to be inferred for some things, but if they can't be worked out '``TYPE``' is just inserted instead.
3939

pydocstring/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:py:func:`pydocstring.generate_docstring` with the source code and the position of your cursor.
44
"""
55

6-
__version__ = "0.1.5"
6+
__version__ = "0.2.0"
77

88
import parso
99
from parso.python.tree import search_ancestor, BaseNode

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ commands =
1212
pytest
1313

1414
[testenv:coverage]
15-
basepython = python3.6
1615
deps =
1716
{[testenv]deps}
1817
pytest-cov
@@ -24,7 +23,6 @@ commands =
2423
codecov -X gcov
2524

2625
[testenv:documentation]
27-
basepython = python3.6
2826
deps =
2927
sphinx
3028
sphinx_rtd_theme

0 commit comments

Comments
 (0)