Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
eeba9e9
enable sudo false and cache pip
Jun 6, 2017
7d89b8f
add 3.6.0 and 3.6.1 separately
Jun 6, 2017
4ba96e8
skipIf 3.6.1 tests
Jun 6, 2017
d566636
Merge remote-tracking branch 'graingert/fix-travis' into v1.6.0
simonpercivall Sep 30, 2018
30c830c
Disable testing 3.6.0 and 3.6.1 separately, test only 3.6.
simonpercivall Sep 30, 2018
5ce62aa
Test Python 3.7.
simonpercivall Sep 30, 2018
fa76660
#18: Fix formatted string with only one value, like `f{foo}`
nvbn May 10, 2017
78bf71e
#18: Handle `FormattedValue` inside `JoinedStr` and outside differently
nvbn May 10, 2017
529671c
#18: Fix `FormattedValue` on Python 3.6.1
nvbn May 10, 2017
793590a
#17: Add support of dict unpacking
nvbn May 10, 2017
6712e02
Fix f-string unparsing properly.
simonpercivall Sep 30, 2018
b63ae22
Add 3.7 to trove classifiers
simonpercivall Sep 30, 2018
8f2f2de
Add more contributors to Authors.
simonpercivall Sep 30, 2018
df08255
Bump version and add HISTORY entry.
simonpercivall Sep 30, 2018
7f63e90
Do a better job at handling very complex f-strings.
simonpercivall Oct 3, 2018
e0240b2
Merge pull request #30 from simonpercivall/bugfix/complex-f-strings
simonpercivall Oct 3, 2018
c73b675
Bump version.
simonpercivall Oct 3, 2018
5339ba8
Add support for the new Constant AST node introduced in Python 3.8
fjarri Nov 20, 2018
b5ab100
Merge pull request #32 from fjarri/py38-constant
simonpercivall Nov 28, 2018
46d119a
Include tests in the sdist
hroncok Jan 19, 2019
431bdfb
Merge pull request #33 from hroncok/patch-1
simonpercivall Jan 19, 2019
d7ba156
Bump version
simonpercivall Jan 19, 2019
2bd9469
Upgrade to py38 version
serge-sans-paille Oct 3, 2019
17c3805
Upgrade travis validation to test py37 and py38
serge-sans-paille Oct 3, 2019
b9f3c58
Update travis config
serge-sans-paille Oct 3, 2019
a2f3e1d
update unparser
serge-sans-paille Oct 3, 2019
abf7441
travis update
serge-sans-paille Oct 3, 2019
1c351e8
version update
serge-sans-paille Oct 3, 2019
0d41c2b
Remove version no longer supported on travis
serge-sans-paille Oct 3, 2019
95f3e5c
Merge branch 'feature/python3.8-support'
simonpercivall Dec 22, 2019
b115720
travis: 3.8 is final, change from 3.8-dev to 3.8
simonpercivall Dec 22, 2019
7188c36
unparser: Remove duplicated method _Await
simonpercivall Dec 22, 2019
f83f2ed
tox: Remove probably really unused python versions
simonpercivall Dec 22, 2019
85e112c
Bump version
simonpercivall Dec 22, 2019
ebbc50d
authors: Add latest contributor to Authors
simonpercivall Dec 22, 2019
2acce01
Merge pull request #42 from simonpercivall/merge/python3.8-support
simonpercivall Dec 22, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Config file for automatic testing at travis-ci.org

sudo: false
language: python

python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt

# command to run tests, e.g. python setup.py test
script: python setup.py test
cache: pip
6 changes: 6 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ Authors

* The Python Software Foundation
* Bogdan Opanchuk
* Vladimir Iakovlev
* Thomas Grainger
* Amund Hov
* Jakub Wilk
* Mateusz Bysiek
* Serge Sans Paille
21 changes: 21 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@ Changelog

Here's the recent changes to AST Unparser.

1.6.3 - 2019-12-22
~~~~~~~~~~~~~~~~~~

* Add full support for Python 3.8

1.6.2 - 2019-01-19
~~~~~~~~~~~~~~~~~~

* Add support for the Constant node in Python 3.8
* Add tests to the sdist

1.6.1 - 2018-10-03
~~~~~~~~~~~~~~~~~~

* Fix the roundtripping of very complex f-strings.

1.6.0 - 2018-09-30
~~~~~~~~~~~~~~~~~~

* Python 3.7 compatibility

1.5.0 - 2017-02-05
~~~~~~~~~~~~~~~~~~

Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ include HISTORY.rst
include LICENSE
include README.rst
include requirements.txt
include test_requirements.txt
include test_requirements.txt
recursive-include tests *.py
2 changes: 1 addition & 1 deletion lib/astunparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .printer import Printer


__version__ = '1.5.0'
__version__ = '1.6.3'


def unparse(tree):
Expand Down
Loading