New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.7.0 Support #9831

Closed
Richienb opened this Issue Jul 2, 2018 · 5 comments

Comments

Projects
None yet
4 participants
@Richienb
Copy link

Richienb commented Jul 2, 2018

At the time of writing, Python 3.7.0 has been released 5 days ago but is not yet supported by Travis CI. Just wondering when support will arrive for this new version.

@joepvd

This comment has been minimized.

Copy link
Member

joepvd commented Jul 2, 2018

See #9815 (comment)

With the following snippet, you can use Python 3.7 in your builds:

language: python
python: 3.7
dist: xenial
sudo: true

@joepvd joepvd closed this Jul 2, 2018

@Richienb

This comment has been minimized.

Copy link

Richienb commented Jul 2, 2018

Thanks!

@waghanza waghanza referenced this issue Jul 4, 2018

Closed

Add python 3.7 on CI #179

3 of 3 tasks complete

rloomans added a commit to rloomans/new-teamtemp that referenced this issue Aug 1, 2018

rloomans added a commit to rloomans/new-teamtemp that referenced this issue Aug 1, 2018

shawnmjones added a commit to oduwsdl/MementoEmbed that referenced this issue Aug 17, 2018

@nikolas

This comment has been minimized.

Copy link

nikolas commented Sep 3, 2018

I'm working on a project that needs to be tested on all versions of python, and when I do this, 2.6, 3.3, and 3.4 fail, but it does allow 3.7 to work.

sudo: false
language: python
dist: "xenial"
sudo: true
python:
  - "2.6"
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"
install:
 - python setup.py install
 - pip install -r test_reqs.txt

Is there a way to tell travis to use xenial for python 3.7, but trusty on the other versions?

@nikolas

This comment has been minimized.

Copy link

nikolas commented Sep 3, 2018

Nevermind - the travis.yml here answers my question: #9815

escaped added a commit to escaped/django-video-encoding that referenced this issue Nov 15, 2018

soasme added a commit to soasme/techshack.weekly that referenced this issue Nov 28, 2018

@mdeff

This comment has been minimized.

Copy link

mdeff commented Dec 28, 2018

sudo: true is not needed anymore. Travis CI is deprecating that option and moving back to a VM-only infrastructure (no more containers with sudo: false).

ymll added a commit to ymll/pikalang that referenced this issue Jan 3, 2019

groteworld added a commit to groteworld/pikalang that referenced this issue Jan 3, 2019

Adding translator to help pikachu to communicate with bf communities (#3
)

* Create translator in brainfuck and pikalang

* Update .travis.yml

issue link for tracking 3.7 on travis:
travis-ci/travis-ci#9069 (comment)

* Enable 3.7 without failing existing python version

same issue mentioned here: travis-ci/travis-ci#9831 (comment)

* Fix travis for python 3.7

infertux added a commit to infertux/zeyple that referenced this issue Jan 8, 2019

trbs added a commit to trbs/pid that referenced this issue Jan 9, 2019

stephendonner added a commit to mozilla/wpt-api that referenced this issue Jan 31, 2019

drsteve added a commit to drsteve/spacepy that referenced this issue Jan 31, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment