mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 03:56:43 +00:00
provide backport for 3.7
This commit is contained in:
parent
a88f144239
commit
b54f9c9c13
@ -19,9 +19,14 @@ import string
|
|||||||
import shutil
|
import shutil
|
||||||
import sys
|
import sys
|
||||||
import importlib
|
import importlib
|
||||||
from importlib import metadata
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
|
try:
|
||||||
|
from importlib import metadata
|
||||||
|
except:
|
||||||
|
import importlib_metadata as metadata
|
||||||
|
|
||||||
|
|
||||||
import moneyed
|
import moneyed
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
|
@ -27,6 +27,7 @@ django-weasyprint==1.0.1 # django weasyprint integration
|
|||||||
djangorestframework==3.12.4 # DRF framework
|
djangorestframework==3.12.4 # DRF framework
|
||||||
flake8==3.8.3 # PEP checking
|
flake8==3.8.3 # PEP checking
|
||||||
gunicorn>=20.1.0 # Gunicorn web server
|
gunicorn>=20.1.0 # Gunicorn web server
|
||||||
|
importlib_metadata # Backport for importlib.metadata
|
||||||
inventree # Install the latest version of the InvenTree API python library
|
inventree # Install the latest version of the InvenTree API python library
|
||||||
pep8-naming==0.11.1 # PEP naming convention extension
|
pep8-naming==0.11.1 # PEP naming convention extension
|
||||||
pillow==8.3.2 # Image manipulation
|
pillow==8.3.2 # Image manipulation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user