mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 10:10:17 +08:00
The requests module 1.2.3 is no longer compatible with python >=3.10.0. So, instead use 2.26.0, the most recent version that is compatible with our supported python versions at the time of this commit.
16 lines
294 B
TOML
16 lines
294 B
TOML
[tool.poetry]
|
|
name = "autoinstall-test"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
requests = "2.26.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|