From 312fbc03a1575874c5c7b6425c894e5b4582ee73 Mon Sep 17 00:00:00 2001 From: David Lynch Date: Sat, 4 Sep 2021 15:12:04 -0500 Subject: [PATCH] Requires Python 3.7 since namedtuple defaults are needed Fixes #70 --- README.markdown | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index d09b260..b2bca64 100644 --- a/README.markdown +++ b/README.markdown @@ -6,7 +6,7 @@ Let's say you want to read some sort of fiction. You're a fan of it, perhaps. Bu Setup --- -You need Python 3.6+ and poetry. +You need Python 3.7+ and poetry. My recommended setup process is: diff --git a/pyproject.toml b/pyproject.toml index b8085bb..fefd5d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ include = ["ebook/*", "sites/*"] leech = "leech:cli" [tool.poetry.dependencies] -python = "^3.6" +python = "^3.7" attrs = "^20.2.0" beautifulsoup4 = "^4.9.3" click-default-group = "^1.2.2"