File tree Expand file tree Collapse file tree 4 files changed +9
-31
lines changed
Expand file tree Collapse file tree 4 files changed +9
-31
lines changed Original file line number Diff line number Diff line change 4141 path : dist/
4242 - name : Publish
4343 uses : pypa/gh-action-pypi-publish@release/v1
44- update-docs-requirements :
45- name : Update docs requirements
46- if : startsWith(github.ref, 'refs/tags')
47- needs :
48- - publish-to-pypi
49- runs-on : ubuntu-latest
50- permissions :
51- contents : write
52- steps :
53- - uses : actions/checkout@v4
54- with :
55- ref : main
56- - uses : actions/setup-python@v4
57- with :
58- python-version : " 3.10"
59- - name : Install pip-tools
60- run : python3 -m pip install pip-tools
61- - name : Update requirements.txt
62- run : cd docs/ && pip-compile requirements.in > requirements.txt
63- - uses : stefanzweifel/git-auto-commit-action@v5
64- with :
65- commit_message : Docs requirements automatic updates
66- branch : main
67- file_pattern : ' *.txt'
68- skip_dirty_check : false
Original file line number Diff line number Diff line change 22# This file is autogenerated by pip-compile with Python 3.10
33# by the following command:
44#
5- # pip-compile requirements.in
5+ # pip-compile --cert=None --client-cert=None --index-url=None --pip-args=None requirements.in
66#
77aiohappyeyeballs == 2.6.1
88 # via aiohttp
@@ -26,9 +26,9 @@ certifi==2025.8.3
2626 # via requests
2727charset-normalizer == 3.4.3
2828 # via requests
29- cheb3 == 1.0.0
29+ cheb3 == 1.0.1
3030 # via -r requirements.in
31- ckzg == 2.1.3
31+ ckzg == 2.1.4
3232 # via eth-account
3333cytoolz == 1.0.1
3434 # via eth-utils
@@ -88,7 +88,7 @@ jinja2==3.1.6
8888 # via sphinx
8989loguru == 0.7.3
9090 # via cheb3
91- markupsafe == 3.0.2
91+ markupsafe == 3.0.3
9292 # via jinja2
9393multidict == 6.6.4
9494 # via
@@ -121,7 +121,7 @@ pygments==2.19.2
121121 # via sphinx
122122pyunormalize == 16.0.0
123123 # via web3
124- regex == 2025.9.1
124+ regex == 2025.9.18
125125 # via parsimonious
126126requests == 2.32.5
127127 # via
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " cheb3"
7- version = " 1.0.0 "
7+ version = " 1.0.1 "
88authors = [{name = " YanhuiJessica" ,email = " y4nhv1@gmail.com" }]
99description = " Web3 CTF tool based on web3.py"
1010readme = " README.rst"
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ cd docs/ && pip-compile requirements.in > requirements.txt && cd -
You can’t perform that action at this time.
0 commit comments