File tree 1 file changed +5
-22
lines changed
1 file changed +5
-22
lines changed Original file line number Diff line number Diff line change @@ -21,23 +21,6 @@ text = "MIT"
21
21
Repository = " https://github.com/redjax/red-utils"
22
22
23
23
[project .optional-dependencies ]
24
- diskcache-utils = [
25
- " diskcache>=5.6.1" ,
26
- ]
27
- fastapi-utils = [
28
- " fastapi>=0.100.0" ,
29
- " uvicorn[standard]>=0.23.0" ,
30
- " loguru>=0.7.0" ,
31
- ]
32
- httpx-utils = [
33
- " httpx>=0.24.1" ,
34
- ]
35
- loguru-utils = [
36
- " loguru>=0.7.0" ,
37
- ]
38
- msgpack-utils = [
39
- " msgpack>=1.0.5" ,
40
- ]
41
24
all = [
42
25
" diskcache>=5.6.1" ,
43
26
" fastapi>=0.100.0" ,
@@ -79,16 +62,16 @@ cmd = "pdm export --prod -o requirements.txt --without-hashes"
79
62
cmd = " pdm export -d -o requirements.dev.txt --without-hashes"
80
63
81
64
[tool .pdm .scripts .create-major-release ]
82
- shell = " pdm bump major && pdm bump tag && pdm build && git push --tags"
65
+ shell = " pdm bump major && pdm bump tag && pdm build && pdm lock && git push --tags"
83
66
84
67
[tool .pdm .scripts .create-minor-release ]
85
- shell = " pdm bump minor && pdm bump tag && pdm build && git push --tags"
68
+ shell = " pdm bump minor && pdm bump tag && pdm build && pdm lock && git push --tags"
86
69
87
70
[tool .pdm .scripts .create-micro-release ]
88
- shell = " pdm bump micro && pdm bump tag && pdm build && git push --tags"
71
+ shell = " pdm bump micro && pdm bump tag && pdm build && pdm lock && git push --tags"
89
72
90
73
[tool .pdm .scripts .upload-pypi ]
91
- cmd = " pdm run twine upload dist/* --verbose"
74
+ shell = " pdm lock && pdm run twine upload dist/* --verbose"
92
75
93
76
[tool .pdm .scripts .upload-pypi-test ]
94
- cmd = " pdm run twine upload --repository testpypi dist/* --verbose"
77
+ shell = " pdm lock && pdm run twine upload --repository testpypi dist/* --verbose"
You can’t perform that action at this time.
0 commit comments