Skip to content

Commit

Permalink
Fix python_requires in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dtatarkin committed Sep 23, 2022
1 parent 8aeb4ae commit 4d8e02d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup

NAME = "braze-client"
VERSION = "2.3.2"
VERSION = "2.3.3"

REQUIRES = ["requests >=2.21.0, <3.0.0", "tenacity >=5.0.0, <6.0.0"]

Expand Down Expand Up @@ -32,5 +32,5 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2., !=3.3.*, !=3.4.*, !=3.5.*",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
)

0 comments on commit 4d8e02d

Please sign in to comment.