Skip to content

Commit 4edfcf1

Browse files
committed
Real commit for release 0.4.1
1 parent d87fb36 commit 4edfcf1

5 files changed

Lines changed: 6 additions & 12 deletions

File tree

.travis-install.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ install:
55
- pip install future
66
- pip install hg+https://bitbucket.org/logilab/pylint@master
77
- pip install hg+https://bitbucket.org/logilab/astroid@master
8-
- bash .travis-install.sh
98
notifications:
109
webhooks:
1110
urls:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,7 @@
2525

2626
### Bug Fixes
2727
* `fold_left` and `fold_right` had incorrect order of arguments for passed function
28+
29+
## Release 0.4.1
30+
31+
Fix python 3 build error due to wheel installation of enum34. Package no longer depends on enum34

functional/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__author__ = "Pedro Rodriguez"
88
__copyright__ = "Copyright 2015, Pedro Rodriguez"
99
__license__ = "MIT"
10-
__version__ = "0.4.0"
10+
__version__ = "0.4.1"
1111
__maintainer__ = "Pedro Rodriguez"
1212
__email__ = "ski.rodriguez@gmail.com"
1313
__status__ = "Development"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
license='MIT',
1919
keywords='functional LINQ pipeline data collection rdd scala',
2020
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'test']),
21-
version='0.4.0',
21+
version='0.4.1',
2222
install_requires=['future', 'six'],
2323
classifiers=[
2424
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)