Skip to content

Commit

Permalink
lower minimum ipython version to 7.31.1 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
shouples authored May 6, 2022
1 parent 91748f2 commit 795e55b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
All notable changes will be documented here.

---

## `1.0.4`
_2022-05-06_
### **Fixed**
* Lowered the minimum required `ipython` version from `8.2.0` to `7.31.1`

## `1.0.3`
_2022-04-26_
### **Fixed**
Expand Down
2 changes: 1 addition & 1 deletion dx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .dx import *
from .formatters import *

__version__ = "1.0.3"
__version__ = "1.0.4"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dx"
version = "1.0.3"
version = "1.0.4"
description = "Python wrapper for Data Explorer"
authors = ["Dave Shoup <[email protected]>", "Kyle Kelley <[email protected]>"]
readme = "README.md"
Expand All @@ -12,7 +12,7 @@ keywords = ["data", "exploration", "visualization"]
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.3.5"
ipython = "^8.2.0"
ipython = ">=7.31.1"

[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
Expand Down

0 comments on commit 795e55b

Please sign in to comment.