Skip to content

Commit

Permalink
Update classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Oct 27, 2024
1 parent 0d3e335 commit a909b0f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 38 deletions.
34 changes: 18 additions & 16 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ links, you need to
* provide a ``get_absolute_url()`` method on the model. This method should
return the URL of the model instance.

If you do not want to use the autodetection, you can provide a list of models
If you do not want to use auto detection, you can provide a list of models
in the ``DJANGOCMS_LINKABLE_MODELS`` setting using dotted strings::

DJANGOCMS_LINKABLE_MODELS = [
Expand Down Expand Up @@ -183,20 +183,6 @@ You can run tests by executing::
python setup.py test


.. |pypi| image:: https://badge.fury.io/py/djangocms-link.svg
:target: http://badge.fury.io/py/djangocms-link
.. |build| image:: https://travis-ci.org/divio/djangocms-link.svg?branch=master
:target: https://travis-ci.org/django-cms/djangocms-link
.. |coverage| image:: https://codecov.io/gh/django-cms/djangocms-link/branch/master/graph/badge.svg
:target: https://codecov.io/gh/django-cms/djangocms-link

.. |python| image:: https://img.shields.io/badge/python-3.10+-blue.svg
:target: https://pypi.org/project/djangocms-link/
.. |django| image:: https://img.shields.io/badge/django-4.2,%205.0,%205.1-blue.svg
:target: https://www.djangoproject.com/
.. |djangocms| image:: https://img.shields.io/badge/django%20CMS-3.7%2B-blue.svg
:target: https://www.django-cms.org/

Upgrading from version 4 or lower
--------------------------------

Expand All @@ -211,7 +197,8 @@ version 4 or lower, you will notice
by other apps such as djangocms-text.
* Links are generated by template tags or template filters instead of the
model's ``get_link()`` method. This allows multiple links in future models. The
``get_link()`` method is still available for backwards compatibility.
``get_link()`` method on the plugin's model is still available for backwards
compatibility.

Migrations should automatically existing plugin instances to the new model
fields.
Expand All @@ -220,3 +207,18 @@ fields.
version 5. The migrations have been tests but they do remove unused fields from
the database. If you encounter any issues, please report them on
`GitHub <https://github.com/django-cms/djangocms-link/issues>`_.

.. |pypi| image:: https://badge.fury.io/py/djangocms-link.svg
:target: http://badge.fury.io/py/djangocms-link
.. |build| image:: https://travis-ci.org/divio/djangocms-link.svg?branch=master
:target: https://travis-ci.org/django-cms/djangocms-link
.. |coverage| image:: https://codecov.io/gh/django-cms/djangocms-link/branch/master/graph/badge.svg
:target: https://codecov.io/gh/django-cms/djangocms-link

.. |python| image:: https://img.shields.io/badge/python-3.10+-blue.svg
:target: https://pypi.org/project/djangocms-link/
.. |django| image:: https://img.shields.io/badge/django-4.2,%205.0,%205.1-blue.svg
:target: https://www.djangoproject.com/
.. |djangocms| image:: https://img.shields.io/badge/django%20CMS-3.11%2B-blue.svg
:target: https://www.django-cms.org/

12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Framework :: Django CMS',
'Framework :: Django CMS :: 3.9',
'Framework :: Django CMS :: 3.10',
'Framework :: Django CMS :: 3.11',
'Framework :: Django CMS :: 4.0',
'Framework :: Django CMS :: 4.1',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
Expand Down
17 changes: 0 additions & 17 deletions tests/x_test_cms_config.py

This file was deleted.

0 comments on commit a909b0f

Please sign in to comment.