Skip to content

Commit

Permalink
update github workflows to fix 3.10 ci
Browse files Browse the repository at this point in the history
Summary: 3.1 is not a valid python version

Reviewed By: aleivag

Differential Revision: D48986994

fbshipit-source-id: d6ebe8776917f1d1433fac1863aab2b4cb56c1f1
  • Loading branch information
fried authored and facebook-github-bot committed Sep 5, 2023
1 parent 0522b60 commit a851dda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit a851dda

Please sign in to comment.