Skip to content

Commit

Permalink
Fixed security issue (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhondta committed Nov 9, 2024
1 parent 9cf66a2 commit 1dcb430
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,9 @@ PostBin | Web bot that can perform Bin operations

### CTF

* [Hacky Easter 2017 (22 & 24)](doc/examples/hacky-easter-2017.md)
* [Hackvent 2017 (Day 06 & 10)](doc/examples/hackvent-2017.md)
* [RingZer0 / Coding (13 & 17)](doc/examples/ringzer0.md)
* [Root-Me / Programming](doc/examples/rootme.md)
* [Hackvent 2017 (Day 06 & 10)](https://github.com/dhondta/python-pybots/blob/main/docs/pages/examples/hackvent-2017.md)
* [RingZer0 / Coding (13 & 17)](https://github.com/dhondta/python-pybots/blob/main/docs/pages/examples/ringzer0.md)
* [Root-Me / Programming](https://github.com/dhondta/python-pybots/blob/main/docs/pages/examples/rootme.md)


## :clap: Supporters
Expand Down
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=66.0", "setuptools-scm"]
requires = ["setuptools>=70.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
Expand Down Expand Up @@ -29,20 +29,21 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"bs4",
"pycountry",
"requests",
"simplejson",
"tinyscript>=1.28.6",
"user_agent",
"beautifulsoup4>=4.12.3",
"pycountry>=24.6.1",
"requests>=2.32.2", # SNYK-PYTHON-REQUESTS-6928867
"simplejson>=3.19.3",
"tinyscript>=1.30.16",
"urllib3>=1.26.19", # SNYK-PYTHON-URLLIB3-7267250
"user_agent>=0.1.10",
]
dynamic = ["version"]

Expand Down
13 changes: 7 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
bs4
pycountry
requests
simplejson
tinyscript>=1.28.6
user_agent
beautifulsoup4>=4.12.3
pycountry>=24.6.1
requests>=2.32.2 # SNYK-PYTHON-REQUESTS-6928867
simplejson>=3.19.3
tinyscript>=1.30.16
urllib3>=1.26.19 # SNYK-PYTHON-URLLIB3-7267250
user_agent>=0.1.10
2 changes: 1 addition & 1 deletion src/pybots/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.3
2.1.5

0 comments on commit 1dcb430

Please sign in to comment.