From 497f6f4c5c93f0d744b30b5e4b39d7f77cdb2da9 Mon Sep 17 00:00:00 2001 From: Arman Roomana Date: Fri, 31 May 2024 10:54:47 +0330 Subject: [PATCH] Release version 1.1.2 --- .github/workflows/{Review.yml => Test.yml} | 2 +- README.md | 4 ++++ setup.py | 17 +++++++++++++---- 3 files changed, 18 insertions(+), 5 deletions(-) rename .github/workflows/{Review.yml => Test.yml} (99%) diff --git a/.github/workflows/Review.yml b/.github/workflows/Test.yml similarity index 99% rename from .github/workflows/Review.yml rename to .github/workflows/Test.yml index 7f33140..7e8d0a8 100644 --- a/.github/workflows/Review.yml +++ b/.github/workflows/Test.yml @@ -1,4 +1,4 @@ -name: Review +name: Test on: pull_request: branches: diff --git a/README.md b/README.md index 59e04bf..f214cca 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/setup.py b/setup.py index 98739b8..c80474b 100644 --- a/setup.py +++ b/setup.py @@ -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): @@ -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, @@ -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', ], )