Skip to content

Commit ba3fb5c

Browse files
author
Two Dev
committed
chore: fix Pillow requirements
1 parent c142a7f commit ba3fb5c

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
exclude: '^docs/|/migrations/'
2-
default_stages: [commit]
2+
default_stages: [pre-commit]
33

44
default_language_version:
55
python: python3.11

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ lint:
1111

1212
publish-test-pypi:
1313
python -m pip install -r requirements.txt
14+
python -m pip install wheel
1415
python -m pip install 'twine>=6.0.1'
1516
python setup.py sdist bdist_wheel
1617
twine upload --repository testpypi dist/*
1718
rm -rf build dist .egg django_chunk_file_upload.egg-info
1819

1920
publish-pypi:
2021
python -m pip install -r requirements.txt
22+
python -m pip install wheel
2123
python -m pip install 'twine>=6.0.1'
2224
python setup.py sdist bdist_wheel
2325
twine upload dist/*

django_chunk_file_upload/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = "django-chunk-file-upload"
2-
__version__ = "1.0.7"
2+
__version__ = "1.0.8"
33
__author__ = "Tu Pham"
44
__license__ = "MIT"
55
__copyright__ = "Copyright 2024 Tu Pham and contributors"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Django>=3.2
2-
pillow~=10.4.0
2+
pillow>=10.4.0

0 commit comments

Comments
 (0)