Skip to content

Commit 58dbcdb

Browse files
committed
update to 1.0.1
1 parent e8f882a commit 58dbcdb

File tree

4 files changed

+9
-31
lines changed

4 files changed

+9
-31
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -41,28 +41,3 @@ jobs:
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

docs/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
#
77
aiohappyeyeballs==2.6.1
88
# via aiohttp
@@ -26,9 +26,9 @@ certifi==2025.8.3
2626
# via requests
2727
charset-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
3333
cytoolz==1.0.1
3434
# via eth-utils
@@ -88,7 +88,7 @@ jinja2==3.1.6
8888
# via sphinx
8989
loguru==0.7.3
9090
# via cheb3
91-
markupsafe==3.0.2
91+
markupsafe==3.0.3
9292
# via jinja2
9393
multidict==6.6.4
9494
# via
@@ -121,7 +121,7 @@ pygments==2.19.2
121121
# via sphinx
122122
pyunormalize==16.0.0
123123
# via web3
124-
regex==2025.9.1
124+
regex==2025.9.18
125125
# via parsimonious
126126
requests==2.32.5
127127
# via

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cheb3"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
authors = [{name = "YanhuiJessica",email = "y4nhv1@gmail.com"}]
99
description = "Web3 CTF tool based on web3.py"
1010
readme = "README.rst"

update_requirements.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
cd docs/ && pip-compile requirements.in > requirements.txt && cd -

0 commit comments

Comments
 (0)