Add PyPy 7 support

I’m now seeing PyPy 7 on Xenial with this:

  • python: ‘pypy’
Python 2.7.13 (8cdda8b8cdb8, Apr 14 2019, 14:06:44)
[PyPy 7.1.1 with GCC 6.2.0 20160901]
  • python: ‘pypy3’
Python 3.6.1 (784b254d6699, Apr 14 2019, 10:22:42)
[PyPy 7.1.1-beta0 with GCC 6.2.0 20160901]
  • python: ‘pypy3.5-7.0’
Python 3.5.3 (928a4f70d3de, Feb 08 2019, 10:42:58)
[PyPy 7.0.0 with GCC 6.2.0 20160901]

For example:

language: python

dist: xenial

# These env vars have no effect other than to show it in the env vars column
matrix:
  include:
    - python: 'pypy'
    - python: 'pypy3'
    - python: 'pypy3.5-7.0'
2 Likes