From 57c37912751446fd2686e56fb993ae3a75df9b1a Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 29 Aug 2026 02:17:14 +0200 Subject: [PATCH 1/2] pyproject.toml: dependencies = [ "beautifulsoup4>=4.15" ] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1a55feda3cbb..ac16ba1198a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ classifiers = [ "Programming Language :: Python :: 3.14", ] dependencies = [ - "beautifulsoup4>=4.12.3", + "beautifulsoup4>=4.15", "cython>=3.1.2", "fake-useragent>=1.5.1", "httpx>=0.28.1", From 831343809859e7791cd7679d551e7d1441a7a34a Mon Sep 17 00:00:00 2001 From: cclauss Date: Sat, 29 Aug 2026 00:17:22 +0000 Subject: [PATCH 2/2] updating DIRECTORY.md --- DIRECTORY.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DIRECTORY.md b/DIRECTORY.md index daf71bab8162..f098fc8b28d2 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -1,6 +1,7 @@ ## Audio Filters * [Butterworth Filter](audio_filters/butterworth_filter.py) + * [Equal Loudness Filter](audio_filters/equal_loudness_filter.py) * [Iir Filter](audio_filters/iir_filter.py) * [Show Response](audio_filters/show_response.py) @@ -451,9 +452,11 @@ * [Time And Half Pay](financial/time_and_half_pay.py) ## Fractals + * [Barnsley Fern](fractals/barnsley_fern.py) * [Julia Sets](fractals/julia_sets.py) * [Koch Snowflake](fractals/koch_snowflake.py) * [Mandelbrot](fractals/mandelbrot.py) + * [Sierpinski Carpet](fractals/sierpinski_carpet.py) * [Sierpinski Triangle](fractals/sierpinski_triangle.py) * [Vicsek](fractals/vicsek.py) @@ -843,8 +846,10 @@ * [Validate Sudoku Board](matrix/validate_sudoku_board.py) ## Networking Flow + * [Dinic](networking_flow/dinic.py) * [Ford Fulkerson](networking_flow/ford_fulkerson.py) * [Minimum Cut](networking_flow/minimum_cut.py) + * [Push Relabel](networking_flow/push_relabel.py) ## Neural Network * Activation Functions