Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: required
dist: trusty
language: python
python:
- 2.7
# - 2.7
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hustlijian It's not acceptable to get rid of the Python 2.7 support.

- 3.4
- 3.5
- 3.6
Expand Down
2 changes: 1 addition & 1 deletion test/unittest/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,4 @@ def test_which_absolute_path(self):
self.fs.create_file(filename)
os.chmod(filename, 0o755)

self.assertEqual([filename], utils.which(filename))
self.assertEqual(filename, utils.which(filename))