mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
fdc4a46b26
* Basic implementation of iCal feed * Add calendar download to API * Improve comments, remove unused outputs * Basic implementation of iCal feed * Add calendar download to API * Improve comments, remove unused outputs * Improve comment * Implement filter include_completed * update requirements.txt with pip-compile --output-file=requirements.txt requirements.in -U * Fix less than filter * Change URL to include calendar.ics * Fix filtering of orders * Remove URL/functions for calendar in views * Lint * More lint * Even more style fixes * Updated requirements-dev.txt because of style fail * Now? * Fine, fix it manually * Gaaah * Fix with same method as in common/settings.py * Fix setting name; improve name of calendar endpoint * Adapt InvenTreeAPITester get function to match post, etc (required for calendar test) * Merge * Reduce requirements.txt * Update requirements-dev.txt * Update tests * Set expected codes in API calendar test * SO completion can not work without line items; set a target date on existing orders instead * Correct method to PATCH * Well that didn't work for some reason.. try with cancelled orders instead * Make sure there are more completed orders than other orders in test * Correct wrong variable * Lint * Use correct status code * Add test for unauthorized access to calendar * Add a working test for unauthorised access * Put the correct test in place, fix Lint * Revert changes to requirements-dev, which appear magically... * Lint * Add test for basic auth * make sample simpler * Increment API version Co-authored-by: Matthias Mair <code@mjmair.com>
44 lines
3.0 KiB
Plaintext
44 lines
3.0 KiB
Plaintext
# Please keep this list sorted - if you pin a version provide a reason
|
|
Django>=3.2.14,<4 # Django package
|
|
coreapi # API documentation for djangorestframework
|
|
cryptography==3.4.8 # Core cryptographic functionality
|
|
django-allauth # SSO for external providers via OpenID
|
|
django-allauth-2fa # MFA / 2FA
|
|
django-cleanup # Automated deletion of old / unused uploaded files
|
|
django-cors-headers # CORS headers extension for DRF
|
|
django-crispy-forms # Form helpers
|
|
django-dbbackup # Backup / restore of database and media files
|
|
django-error-report # Error report viewer for the admin interface
|
|
django-filter # Extended filtering options
|
|
django-formtools # Form wizard tools
|
|
django-ical # iCal export for calendar views
|
|
django-import-export==2.5.0 # Data import / export for admin interface
|
|
django-maintenance-mode # Shut down application while reloading etc.
|
|
django-markdownify # Markdown rendering
|
|
django-money<3.0.0 # Django app for currency management # FIXED 2022-06-26 to make sure py-moneyed is not conflicting
|
|
django-mptt==0.11.0 # Modified Preorder Tree Traversal
|
|
django-redis>=5.0.0 # Redis integration
|
|
django-q # Background task scheduling
|
|
django-sql-utils # Advanced query annotation / aggregation
|
|
django-sslserver # Secure HTTP development server
|
|
django-stdimage<6.0.0 # Advanced ImageField management # FIXED 2022-06-29 6.0.0 breaks serialization for django-q
|
|
django-user-sessions # user sessions in DB
|
|
django-weasyprint # django weasyprint integration
|
|
djangorestframework # DRF framework
|
|
django-xforwardedfor-middleware # IP forwarding metadata
|
|
feedparser # RSS newsfeed parser
|
|
gunicorn # Gunicorn web server
|
|
pdf2image # PDF to image conversion
|
|
pillow # Image manipulation
|
|
python-barcode[images] # Barcode generator
|
|
qrcode[pil] # QR code generator
|
|
rapidfuzz==0.7.6 # Fuzzy string matching
|
|
regex # Advanced regular expressions
|
|
sentry-sdk # Error reporting (optional)
|
|
setuptools # Standard depenedency
|
|
tablib[xls,xlsx,yaml] # Support for XLS and XLSX formats
|
|
weasyprint==54.3 # PDF generation
|
|
|
|
# Fixed sub-dependencies
|
|
py-moneyed<2.0 # For django-money # FIXED 2022-06-18 as we need `moneyed.localization`
|