diff --git a/.circleci/config.yml b/.circleci/config.yml index 5b035524..319810c7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,7 +38,6 @@ jobs: - run: command: | # Use pip to install dependengcies - sudo pip install git+git://github.com/rocky/python-xdis.git#egg=xdis pip install --user --upgrade setuptools pip install --user -e . pip install --user -r requirements-dev.txt diff --git a/.travis.yml b/.travis.yml index 97cb4b25..3ab93e97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,6 @@ matrix: dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069) install: -- sudo pip install git+git://github.com/rocky/python-xdis.git#egg=xdis - pip install -e . - pip install -r requirements-dev.txt diff --git a/NEWS.md b/NEWS.md index 8a7ea59f..107c7515 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,12 @@ +3.7.1: 2020-6-12 Fleetwood66 +==================================================== + +Released to pick up new xdis version which has fixes to read bytestings better on 3.x + +* Handle 3.7+ "else" branch removal adAs seen in `_cmp()` of `python3.8/distutils/version.py` with optimization `-O2` +* 3.6+ "with" and "with .. as" grammar improvements +* ast-check for "for" loop was missing some grammar rules + 3.7.0: 2020-5-19 Primidi 1st Prairial - Alfalfa - HF ==================================================== diff --git a/uncompyle6/version.py b/uncompyle6/version.py index 41ef8334..3f064333 100644 --- a/uncompyle6/version.py +++ b/uncompyle6/version.py @@ -12,4 +12,4 @@ # along with this program. If not, see . # This file is suitable for sourcing inside POSIX shell as # well as importing into Python -VERSION="3.7.0" # noqa +VERSION="3.7.1" # noqa