Skip to content

Commit

Permalink
use py3.9 for linter CI
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebookresearch#4627

linter failed to run: https://github.com/facebookresearch/detectron2/actions/runs/3348881377/jobs/5548693962

Similar issue: https://stackoverflow.com/questions/73929564/entrypoints-object-has-no-attribute-get-digital-ocean, suggest using Python3.9

Reviewed By: tglik

Differential Revision: D40822952

fbshipit-source-id: 6b69f7440d44e798b938c9113461c28729bb579b
  • Loading branch information
Yanghan Wang authored and facebook-github-bot committed Oct 30, 2022
1 parent 32bd159 commit d3e3cbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
if: ${{ github.repository_owner == 'facebookresearch' || github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Install dependencies
# flake8-bugbear flake8-comprehensions are useful but not available internally
run: |
Expand Down

0 comments on commit d3e3cbe

Please sign in to comment.