Skip to content

Commit b50f3ee

Browse files
Add new package requirement
- Fix SSL issues on Windows
1 parent 2c30c02 commit b50f3ee

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
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 & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,40 +10,30 @@
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=[
41-
"requests>=2.27.0"
30+
"requests>=2.27.0",
31+
"pip-system-certs>=4.0",
4232
],
43-
4433
setup_requires=[
4534
"wheel",
35+
"twine",
36+
"wrapt"
4637
],
47-
48-
python_requires=">=3.8"
38+
python_requires=">=3.9"
4939
)

0 commit comments

Comments
 (0)