Skip to content

Use Python 3.8 in CI tasks #355

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 3 commits into from
Jan 8, 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
10 changes: 5 additions & 5 deletions .taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ tasks:
deadline: {$fromNow: '1 hour'}
payload:
maxRunTime: 3600
image: python:3.7
image: python:3.8
command:
- sh
- -lxce
Expand All @@ -81,7 +81,7 @@ tasks:
deadline: {$fromNow: '1 hour'}
payload:
maxRunTime: 3600
image: python:3.7
image: python:3.8
command:
- sh
- -lxce
Expand All @@ -103,7 +103,7 @@ tasks:
deadline: {$fromNow: '1 hour'}
payload:
maxRunTime: 3600
image: python:3.7
image: python:3.8
command:
- sh
- -lxce
Expand All @@ -124,7 +124,7 @@ tasks:
deadline: {$fromNow: '1 hour'}
payload:
maxRunTime: 3600
image: python:3.7
image: python:3.8
command:
- sh
- -lxce
Expand All @@ -144,7 +144,7 @@ tasks:
deadline: {$fromNow: '1 hour'}
payload:
maxRunTime: 3600
image: python:3.7
image: python:3.8
command:
- sh
- -lxce
Expand Down
1 change: 0 additions & 1 deletion events/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
aiohttp==3.6.2
-e ../tools #egg=code-coverage-tools
libmozevent==1.1.0
3 changes: 2 additions & 1 deletion tools/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# limit async-timeout version to avoid using the alpha 4.0.0a0
# limit aiohttp and async-timeout versions to avoid using the alpha 4.0.0a0
aiohttp==3.6.2
async-timeout<4.0,>=3.0
logbook
raven
Expand Down