Skip to content

Commit

Permalink
django 5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jerch committed Jan 19, 2024
1 parent f1443fc commit f322798
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -103,6 +103,9 @@ The documentation can be found [here](https://django-computedfields.readthedocs.


#### Changelog
- 0.2.5
- Django 5.0 & Python 3.12 support
- Django 3.2 support dropped
- 0.2.4
- performance improvement: use OR for simple multi dependency query construction
- performance improvement: better queryset narrowing for M2M lookups
Expand Down
2 changes: 1 addition & 1 deletion computedfields/__init__.py
@@ -1 +1 @@
__version__ = '0.2.4'
__version__ = '0.2.5'
3 changes: 3 additions & 0 deletions docs/manual.rst
Expand Up @@ -611,6 +611,9 @@ a similar feature in Django's ORM.
Changelog
---------

- 0.2.5
- Django 5.0 & Python 3.12 support
- Django 3.2 support dropped
- 0.2.4
- performance improvement: use OR for simple multi dependency query construction
- performance improvement: better queryset narrowing for M2M lookups
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -18,7 +18,7 @@ def get_version(path):
packages=find_packages(exclude=['example']),
include_package_data=True,
install_requires=[
'Django>=2.2,<5.1',
'Django>=4.2,<5.1',
'typing_extensions>=4.1',
'django-fast-update'
],
Expand All @@ -30,7 +30,7 @@ def get_version(path):
author='netzkolchose',
author_email='j.breitbart@netzkolchose.de',
url='https://github.com/netzkolchose/django-computedfields',
download_url='https://github.com/netzkolchose/django-computedfields/archive/0.2.4.tar.gz',
download_url='https://github.com/netzkolchose/django-computedfields/archive/0.2.5.tar.gz',
keywords=['django', 'method', 'decorator',
'autoupdate', 'persistent', 'field'],
classifiers=[
Expand All @@ -40,7 +40,6 @@ def get_version(path):
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit f322798

Please sign in to comment.