Skip to content

Commit

Permalink
Merge b32fffb into b6ddb3c
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-maier committed Apr 13, 2020
2 parents b6ddb3c + b32fffb commit c2c01b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ Released: not yet
* Increased minimum version of 'six' from 0.10.0 to 0.12.0 when on Python 3.8
(or higher). (See issue #2150).

* Increased minimum version of 'setuptools' on Python 3.7 from 33.1.1 to 38.4.1
to fix a bug with new format of .pyc files. (See issue #2167).

**Cleanup:**

**Known issues:**
Expand Down
4 changes: 3 additions & 1 deletion minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@
# wheel 0.33.6

# For Python up to Python 3.7, we use the versions from Ubuntu 17.04:
# setuptools 38.4.1 fixes a bug on Python 3.7.
pip==9.0.1; python_version <= '3.7'
setuptools==33.1.1; python_version <= '3.7'
setuptools==33.1.1; python_version < '3.7'
setuptools==38.4.1; python_version == '3.7'
wheel==0.29.0; python_version <= '3.7'

# For Python 3.8 and above, we use the versions from Python 3.8.0:
Expand Down

0 comments on commit c2c01b4

Please sign in to comment.