10000 Standardize git output and make it a bit more chatty on errors by ambv · Pull Request #31 · python/cherry-picker · GitHub
[go: up one dir, main page]

Skip to content

Standardize git output and make it a bit more chatty on errors #31

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

Merged
merged 2 commits into from
Aug 2, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Fix Travis
  • Loading branch information
ambv committed Aug 2, 2021
commit 9ba888033031e692da4b3dc5166ea6811b451b50
4 changes: 2 additions & 2 deletions .travis.yml
4662
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ python:
- "3.8"
- "3.7"
- "3.6"
- "nightly" # currently, it's 3.10
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This is 3.10a5 which doesn't have functionality that new pip expects from 3.10 so it fails miserably.


matrix:
allow_failures:
- python: "nightly"
dist: focal

install:
- python -m pip install --upgrade flit pip
- python -m pip install --upgrade flit
- python -m pip install --upgrade pip
Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's easier to tell if one of those fails which one it was.

- flit install

script:
Expand Down
0