Skip to content
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

Set travis env to Python 3.7 #1151

Merged
merged 4 commits into from
Mar 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: c++
language: python
python:
- "2.7"
- "3.7"

sudo: on

Expand All @@ -15,7 +15,6 @@ install:
- sudo pip install sphinx==1.7.9
- sudo apt-get install texlive-full yarn
- git clone https://github.com/tabatkins/bikeshed.git
- git -C $PWD/bikeshed checkout 087ea90e1ebd0321c20373d89950d1c6b73d5df1
- pip install --editable $PWD/bikeshed
- bikeshed update

Expand Down
2 changes: 1 addition & 1 deletion document/core/util/bikeshed_fixup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3
# -*- coding: latin-1 -*-

import os
Expand Down
6 changes: 3 additions & 3 deletions document/core/util/mathjax2katex.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
#! /usr/bin/env python3
# -*- coding: latin-1 -*-

import Queue
import queue
import os
import re
import shelve
Expand Down Expand Up @@ -239,7 +239,7 @@ def Worker():
q.task_done()
sys.stderr.write('.')

q = Queue.Queue()
q = queue.Queue()
for i in range(40):
t = threading.Thread(target=Worker)
t.daemon = True
Expand Down
2 changes: 1 addition & 1 deletion test/core/run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from __future__ import print_function
import argparse
Expand Down