From 81bb842e1259cd0dbcf9908be26df5ec9527ce28 Mon Sep 17 00:00:00 2001 From: Pranav Dronavalli <62522813+dronavallipranav@users.noreply.github.com> Date: Sat, 19 Aug 2023 15:22:55 -0500 Subject: [PATCH] Setup.py requires python3.9+ (#1046) * installation requires 3.9+ * Update README.md --------- Co-authored-by: David Teather <34144122+davidteather@users.noreply.github.com> --- README.md | 2 ++ setup.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 76639bca..b400f1e9 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,8 @@ To get started using this API follow the instructions below. ### Installing +**Note:** Installation requires python3.9+ + If you run into an issue please check the closed issues on the github, although feel free to re-open a new issue if you find an issue that's been closed for a few months. The codebase can and does run into similar issues as it has before, because TikTok changes things up. ```sh diff --git a/setup.py b/setup.py index b7afa050..097ea2bb 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ keywords=["tiktok", "python3", "api", "unofficial", "tiktok-api", "tiktok api"], install_requires=["requests", "playwright"], classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 6.1.0", "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "License :: OSI Approved :: MIT License", @@ -28,4 +28,5 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ], + python_requires='>=3.9', )