chore(notion-organizer): drop dead aiohttp dependency (#8)

aiohttp was listed in requirements.txt but never imported by any of the
six Python scripts in custom-skills/31-notion-organizer/code/scripts.
The async HTTP work is done via notion-client 2.2.1, which uses httpx
internally (confirmed via `pip show notion-client`).

Removing the unused pin will stop future dependabot churn for a library
this skill doesn't depend on.

Verified before this change: aiohttp 3.13.4 (just merged via #6) was
inert — all 30 tests in test_notion_search.py pass, and all 6 scripts
import cleanly without aiohttp present.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Andrew Yim
2026-05-14 08:23:36 +09:00
committed by GitHub
parent 89889300d6
commit 9630428c3e

View File

@@ -1,12 +1,9 @@
# Notion Organizer Scripts - Requirements # Notion Organizer Scripts - Requirements
# Python 3.10+ required # Python 3.10+ required
# Notion API client # Notion API client (uses httpx under the hood; no extra HTTP lib needed)
notion-client==2.2.1 notion-client==2.2.1
# Async HTTP
aiohttp==3.13.4
# Rate limiting # Rate limiting
asyncio-throttle==1.0.2 asyncio-throttle==1.0.2