Update the pyproject file

This commit is contained in:
Frost Ming 2021-04-25 18:16:11 +08:00
parent 494e36b1c3
commit 22618386e0
No known key found for this signature in database
GPG Key ID: 5BFA9CB4DDA943BF
3 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "setup-pdm", "name": "setup-pdm",
"version": "1.0.0", "version": "2.0.0",
"description": "The GitHub Action for using pdm as the package manager", "description": "The GitHub Action for using pdm as the package manager",
"main": "dist/setup-pdm.js", "main": "dist/setup-pdm.js",
"scripts": { "scripts": {

2
pdm.lock generated
View File

@ -28,7 +28,7 @@ summary = "HTTP library with thread-safe connection pooling, file post, and more
[metadata] [metadata]
lock_version = "2" lock_version = "2"
content_hash = "sha256:09666cab51d1049e60d580a53402036be799c6d7511cefc532de171f40280497" content_hash = "sha256:8e01da7dc7329a789734e6b6c7d69eb81a13ea4c21a650e0ff23ea3c5bf25b5f"
[metadata.files] [metadata.files]
"certifi 2020.12.5" = [ "certifi 2020.12.5" = [

View File

@ -2,12 +2,6 @@
authors = [ authors = [
{name = "Frost Ming", email = "mianghong@gmail.com"}, {name = "Frost Ming", email = "mianghong@gmail.com"},
] ]
dev-dependencies = [
"idna; python_version=='3.6'",
"chardet; python_version=='3.7'",
"urllib3; python_version=='3.8'",
"certifi; python_version=='3.9'",
]
include = "test.py" include = "test.py"
requires-python = ">=3.6" requires-python = ">=3.6"
dynamic = ["classifiers"] dynamic = ["classifiers"]
@ -19,6 +13,14 @@ homepage = ""
[tool] [tool]
[tool.pdm] [tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"idna; python_version=='3.6'",
"chardet; python_version=='3.7'",
"urllib3; python_version=='3.8'",
"certifi; python_version=='3.9'",
]
[build-system] [build-system]
requires = ["pdm-pep517"] requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api" build-backend = "pdm.pep517.api"