Skip to content

Commit

Permalink
Allowed use of Pillow v10 and django-imagekit v5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philgyford committed Dec 11, 2023
1 parent 5b15bb2 commit c4c60ec
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Allowed use of Pillow v10 and django-imagekit v5.0
- Switched from using flake8 and black for linting and formatting to ruff

## [3.1.0] - 2023-06-20
Expand Down
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,16 @@ def get_author_email():
sys.exit()

dev_require = [
"django-debug-toolbar>=2.0,<5.0",
"django-debug-toolbar",
"python-dotenv",
"ruff",
"unittest-parametrize",
]

tests_require = dev_require + [
"factory-boy>=2.12.0,<4.0",
"freezegun>=0.3.12,<2.0",
"responses>=0.10.7,<1.0",
"factory-boy",
"freezegun",
"responses",
"coverage[toml]",
]

Expand All @@ -87,11 +87,13 @@ def get_author_email():
version=get_version(),
packages=["ditto"],
install_requires=[
"django-imagekit>=4.0,<4.2",
"django-imagekit>=4.0,<6.0",
"django-sortedm2m>=3.0.0,<3.2",
# django-taggit 5.0 removes support for Django 3.2, so update this when we
# drop Django 3.2:
"django-taggit>=3.0.0,<5.0",
"flickrapi>=2.4,<2.5",
"pillow>=8.0.0,<10.0",
"pillow>=9.0.0,<11.0",
"twitter-text-python>=1.1.1,<1.2",
"twython>=3.7.0,<3.10",
],
Expand Down

0 comments on commit c4c60ec

Please sign in to comment.