Skip to content

Commit

Permalink
Release version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
a-roomana committed May 31, 2024
1 parent f43b688 commit 497f6f4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Review
name: Test
on:
pull_request:
branches:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@


[![PyPi Version](https://img.shields.io/pypi/v/django-jalali-date.svg)](https://pypi.python.org/pypi/django-jalali-date)
[![Github Tests](https://github.com/a-roomana/django-jalali-date/workflows/Tests/badge.svg?branch=master)](https://github.com/a-roomana/django-jalali-date/actions)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/django-jalali-date.svg)](https://pypistats.org/packages/django-jalali-date)
[![GitHub stars](https://img.shields.io/github/stars/a-roomana/django-jalali-date.svg?style=social)](https://github.com/a-roomana/django-jalali-date)

[![Python Version](https://img.shields.io/pypi/pyversions/django-jalali-date.svg)](https://pypi.python.org/pypi/django-jalali-date)

# django-jalali-date

Jalali Date support for user interface. Easy conversion of DateTimeField to JalaliDateTimeField within the admin site, view and templates.
Expand Down
17 changes: 13 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
import codecs
from setuptools import setup, find_packages

from setuptools import find_packages, setup


def read_me(filename):
Expand All @@ -9,7 +10,7 @@ def read_me(filename):

setup(
name='django-jalali-date',
version='1.1.1',
version='1.1.2',
python_requires='>=3',
packages=find_packages(),
include_package_data=True,
Expand All @@ -32,11 +33,19 @@ def read_me(filename):
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
],
)

0 comments on commit 497f6f4

Please sign in to comment.