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 · 4 comments

Comments

Projects
None yet
3 participants
@Richienb

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.

Show comment
Hide comment
@joepvd

joepvd Jul 2, 2018

Member

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
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.

Show comment
Hide comment
@Richienb

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

@nikolas

This comment has been minimized.

Show comment
Hide comment
@nikolas

nikolas 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 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.

Show comment
Hide comment
@nikolas

nikolas Sep 3, 2018

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

nikolas commented Sep 3, 2018

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

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