Skip to content

Commit 54ea4f3

Browse files
committed
Merge branch 'master' of https://github.com/inventree/inventree-python into add-oauth2
2 parents 2e19f12 + 4c45209 commit 54ea4f3

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

inventree/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from . import api as inventree_api
99

10-
INVENTREE_PYTHON_VERSION = "0.17.4"
10+
INVENTREE_PYTHON_VERSION = "0.17.5"
1111

1212

1313
logger = logging.getLogger('inventree')

setup.py

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,41 +10,32 @@
1010

1111
setuptools.setup(
1212
name="inventree",
13-
1413
version=INVENTREE_PYTHON_VERSION,
15-
1614
author="Oliver Walters",
17-
1815
author_email="[email protected]",
19-
2016
description="Python interface for InvenTree inventory management system",
21-
2217
long_description=long_description,
23-
2418
long_description_content_type='text/markdown',
25-
2619
keywords="bom, bill of materials, stock, inventory, management, barcode",
27-
2820
url="https://github.com/inventree/inventree-python/",
29-
3021
license="MIT",
31-
3222
packages=setuptools.find_packages(
3323
exclude=[
3424
'ci',
3525
'scripts',
3626
'test',
3727
]
3828
),
39-
4029
install_requires=[
4130
"requests>=2.27.0",
31+
"pip-system-certs>=4.0",
32+
"urllib3>=2.3.0",
4233
"requests-oauthlib"
4334
],
44-
4535
setup_requires=[
4636
"wheel",
37+
"twine",
38+
"wrapt"
4739
],
48-
49-
python_requires=">=3.8"
40+
python_requires=">=3.9"
5041
)

0 commit comments

Comments
 (0)