hello all,
I have in my .travis.yml
python: pypy3
my build still breaks, any idea?
hello all,
I have in my .travis.yml
python: pypy3
my build still breaks, any idea?
Hello,
Try this .travis.yml
configuration:
language: python
python: pypy3
install: true
script:
- python -V
jobs:
include:
- dist: xenial
- dist: bionic
- dist: focal
- dist: jammy
I’ve attached my build defining pypy3
, here. You’ll see defining pypy3
builds just fine. This was recently resolved, so try rebuilding or send me your .travis.yml
and I can take a look at it for you.
thanks @montana,
I now do not have to define pypy version so verbosely.
Really good to hear this deployed fix worked.