Upgrade remainding python to 3.11 removing 3.7 (#15321)

### Description
Upgrade remainding python to 3.11 removing 3.7


### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
This commit is contained in:
Jian Chen 2023-04-05 21:43:51 -07:00 committed by GitHub
parent 6e1e808ec8
commit 2e52de265a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -43,7 +43,7 @@ reportMissingImports = false
[tool.ruff]
# NOTE: Do not create an exclude list. Edit .lintrunner.toml instead
target-version = "py37"
target-version = "py38"
select = [
"E", # pycodestyle
"F", # Pyflakes

View file

@ -28,6 +28,8 @@ jobs:
PythonVersion: '3.9'
Python310:
PythonVersion: '3.10'
Python311:
PythonVersion: '3.11'
steps:
- checkout: none