Skip to content

Commit

Permalink
Fix meta
Browse files Browse the repository at this point in the history
  • Loading branch information
rremizov committed Aug 17, 2023
1 parent a6e6662 commit 8982b37
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
12 changes: 4 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
django-random-queryset |Build status|
=====================================
django-random-queryset
======================

Pull random records using Django ORM.


Requirements
------------

- Python 3.6, 3.7
- Django 1.11, 2.0, 2.1, 2.2.
- Python 3.8+
- Django 3.2+


Installation
Expand Down Expand Up @@ -51,7 +51,3 @@ How to use it:
queryset.random(5) # to pass limited random records
queryset.random(len(queryset)) # to get all random records
queryset.random().values() # to have access to other queryset methods
.. |Build status| image:: https://travis-ci.com/rremizov/django-random-queryset.svg?branch=master
:target: https://travis-ci.com/rremizov/django-random-queryset
2 changes: 1 addition & 1 deletion django_random_queryset/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.3"
__version__ = "0.2.0"


from .managers import RandomManager
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="django-random-queryset",
version="0.1.3",
version="0.2.0",
author="Roman Remizov",
author_email="rremizov@yandex.ru",
license="MIT",
Expand All @@ -11,7 +11,7 @@
long_description=open("README.rst").read(),
url="http://github.com/rremizov/django-random-queryset",
packages=["django_random_queryset"],
install_requires=["django>=1.11.27"],
install_requires=["django>=3.2"],
test_suite="tests.run_tests.run_all",
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit 8982b37

Please sign in to comment.