Skip to content

Commit f883950

Browse files
author
Sylvain MARIE
committed
Fixed dependency issue: in 2.0.0 pandas and numpy were mandatory again. Fixed that.
1 parent cbe5b26 commit f883950

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 2.0.1 - fixed dependency issue
4+
5+
* in 2.0.0 pandas and numpy were mandatory again. Fixed that.
6+
37
### 2.0.0 - python 2 support, default `repr`, and cleaner submodules structure
48

59
* Lambda expressions now have a normal `repr` by default, and this can be disabled by using the `repr_on` attribute to `False`. Fixes [#12](https://github.com/smarie/python-mini-lambda/issues/12)

mini_lambda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
]
1818

1919
# for these two ones we can, there is a `__all__` inside
20-
from mini_lambda.vars import *
20+
from mini_lambda.vars import s, b, x, y, i, j, n, l, d, f
2121
from mini_lambda.vars import __all__ as vall
2222

2323
from mini_lambda.generated_magic_replacements import *

0 commit comments

Comments
 (0)