Skip to content

Commit 7352a56

Browse files
authored
[TOOLSLIBS-2184] Add package types and bump requests version (#209)
* bumps requests version * modifies install_requires, adds package_data * modifies setup for types add py.typed file
1 parent d6375ca commit 7352a56

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
requests==2.31.0
1+
requests==2.32.3
22
backoff==2.2.1
33
types-requests
44
six

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
try:
22
from setuptools import setup
3-
except (ImportError):
3+
except ImportError:
44
from distutils.core import setup
55

66
__about__ = {}
@@ -34,5 +34,8 @@
3434
"Operating System :: OS Independent",
3535
"Topic :: Software Development :: Libraries",
3636
],
37-
install_requires=["requests>=1.2", "six", "backoff>=1.11"],
37+
install_requires=["requests>=2.32", "six", "backoff>=2.2.1", "pyjwt>=2.8.0"],
38+
package_data={
39+
"urbanairship": ["py.typed"],
40+
},
3841
)

urbanairship/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)