Skip to content

Commit 795e55b

Browse files
authored
lower minimum ipython version to 7.31.1 (#9)
1 parent 91748f2 commit 795e55b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
All notable changes will be documented here.
22

33
---
4-
4+
## `1.0.4`
5+
_2022-05-06_
6+
### **Fixed**
7+
* Lowered the minimum required `ipython` version from `8.2.0` to `7.31.1`
8+
59
## `1.0.3`
610
_2022-04-26_
711
### **Fixed**

dx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from .dx import *
33
from .formatters import *
44

5-
__version__ = "1.0.3"
5+
__version__ = "1.0.4"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dx"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
description = "Python wrapper for Data Explorer"
55
authors = ["Dave Shoup <dave.shoup@gmail.com>", "Kyle Kelley <rgbkrk@gmail.com>"]
66
readme = "README.md"
@@ -12,7 +12,7 @@ keywords = ["data", "exploration", "visualization"]
1212
[tool.poetry.dependencies]
1313
python = "^3.8"
1414
pandas = "^1.3.5"
15-
ipython = "^8.2.0"
15+
ipython = ">=7.31.1"
1616

1717
[tool.poetry.dev-dependencies]
1818
pytest = "^7.1.2"

0 commit comments

Comments
 (0)