We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2ef245 commit 542017aCopy full SHA for 542017a
2 files changed
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## 7.3.1 (2020-03-22)
4
+
5
+- Fix error when parsing empty list with subcast
6
+ [#137](https://github.com/sloria/environs/issues/137).
7
+ Thanks [sabdouni] for the catch and patch.
8
9
## 7.3.0 (2020-03-01)
10
11
- `log_level` accepts lower-cased log level names and rejects invalid
environs/__init__.py
@@ -15,7 +15,7 @@
15
import marshmallow as ma
16
from dotenv.main import load_dotenv, _walk_to_root
17
18
-__version__ = "7.3.0"
+__version__ = "7.3.1"
19
__all__ = ["EnvError", "Env"]
20
21
MARSHMALLOW_VERSION_INFO = tuple(int(part) for part in ma.__version__.split(".") if part.isdigit())
0 commit comments