Skip to content

Commit 4314d1e

Browse files
committed
Fix packaging
1 parent 72c1b67 commit 4314d1e

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
History
44
=======
55

6+
1.6.14
7+
======
8+
9+
* Fix packaging issues.
10+
611
1.6.13
712
======
813

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (©) 2008 Andreas Pelme <[email protected]>
2-
Copyright (©) 2011-2014 Timothée Peignier <[email protected]>
2+
Copyright (©) 2011-2018 Timothée Peignier <[email protected]>
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# The short X.Y version.
5252
version = '1.6'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '1.6.13'
54+
release = '1.6.14'
5555

5656
# The language for content autogenerated by Sphinx. Refer to documentation
5757
# for a list of supported languages.

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
[wheel]
22
universal = 1
33

4+
[metadata]
5+
license_file = LICENSE

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,9 @@
44
from setuptools import setup, find_packages
55
import sys
66

7-
install_requires = []
8-
if (sys.version_info[0], sys.version_info[1]) < (3, 2):
9-
install_requires.append('futures>=2.1.3')
10-
117
setup(
128
name='django-pipeline',
13-
version='1.6.13',
9+
version='1.6.14',
1410
description='Pipeline is an asset packaging library for Django.',
1511
long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
1612
io.open('HISTORY.rst', encoding='utf-8').read(),
@@ -20,7 +16,7 @@
2016
license='MIT',
2117
packages=find_packages(exclude=['tests', 'tests.tests']),
2218
zip_safe=False,
23-
install_requires=install_requires,
19+
extras_require={ ':python_version<"3"': ['futures>=2.1.3'] },
2420
include_package_data=True,
2521
keywords=('django pipeline asset compiling concatenation compression'
2622
' packaging'),

0 commit comments

Comments
 (0)