Skip to content

Commit 38a5525

Browse files
author
Mart Sõmermaa
committed
Prepare v1.0.1 release
1 parent 38eb605 commit 38a5525

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import os
44
from setuptools import find_packages, setup
55

6+
VERSION = '1.0.1'
7+
68
# allow setup.py to be run from any path
79
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
810

@@ -13,14 +15,14 @@
1315

1416
setup(
1517
name='django-admin-list-filter-dropdown',
16-
version='1.0.0',
18+
version=VERSION,
1719
packages=find_packages(),
1820
include_package_data=True,
1921
license='MIT License',
2022
description=description,
2123
long_description=long_description,
2224
url='https://github.com/mrts/django-admin-list-filter-dropdown',
23-
download_url='https://github.com/mrts/django-admin-list-filter-dropdown/archive/1.0.0.zip',
25+
download_url='https://github.com/mrts/django-admin-list-filter-dropdown/archive/%s.zip' % VERSION,
2426
author='Mart Sõmermaa',
2527
author_email="mrts.pydev at gmail dot com",
2628
keywords=['django', 'admin', 'filter', 'dropdown'],

0 commit comments

Comments
 (0)