blob: fdae2e9e24e0c85ca2679f5f0b25bbfed09ad86a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From bf325d0b69df71f508c029c0c5a63c69d2742d2f Mon Sep 17 00:00:00 2001
From: Christoph Gysin <christoph.gysin@gmail.com>
Date: Thu, 4 May 2023 21:14:43 +0300
Subject: [PATCH] Fix python_requires version string
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 6dc9159..c49ee52 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ setup(
keywords="aws logs cloudwatch",
packages=find_packages(),
platforms='any',
- python_requires=">=3.5.*",
+ python_requires=">=3.5",
install_requires=install_requires,
test_suite='tests',
classifiers=[
--
2.40.1
|