Skip to content

Commit

Permalink
Dependencies: Add compatibility for ipython~=8.0 (aiidateam#5888)
Browse files Browse the repository at this point in the history
Compatibility for `ipython~=7.0` is maintained so we simply change the
upper limit to be `ipython<9.0`.

Bump ipython from 7.31.1 to 8.10.0 in /requirements

Bumps [ipython](https://github.com/ipython/ipython) from 7.31.1 to 8.10.0.
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@7.31.1...8.10.0)

---
updated-dependencies:
- dependency-name: ipython
  dependency-type: direct:production
- dependency-name: prompt-toolkit
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Feb 23, 2023
1 parent 80045ae commit 5fe60ec
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion aiida/tools/ipython/ipython_magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import json
import shlex

from IPython import get_ipython, version_info
from IPython import get_ipython, version_info # type: ignore[attr-defined]
from IPython.core import magic


Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- click~=8.1
- disk-objectstore~=0.6.0
- python-graphviz~=0.13
- ipython~=7.20
- ipython<9,>=7
- jinja2~=3.0
- jsonschema~=3.0
- kiwipy[rmq]~=0.7.7
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies = [
"click~=8.1",
"disk-objectstore~=0.6.0",
"graphviz~=0.13",
"ipython~=7.20",
"ipython>=7,<9",
"jinja2~=3.0",
"jsonschema~=3.0",
"kiwipy[rmq]~=0.7.7",
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements-py-3.10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ imagesize==1.3.0
importlib-metadata==4.8.2
iniconfig==1.1.1
ipykernel==6.5.1
ipython==7.31.1
ipython==8.10.0
ipython-genutils==0.2.0
ipywidgets==7.6.5
itsdangerous==2.0.1
Expand Down Expand Up @@ -92,7 +92,7 @@ plotly==5.4.0
pluggy==1.0.0
plumpy==0.21.3
prometheus-client==0.12.0
prompt-toolkit==3.0.23
prompt-toolkit==3.0.37
psutil==5.8.0
psycopg2-binary==2.9.1
ptyprocess==0.7.0
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements-py-3.11.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ imagesize==1.4.1
importlib-metadata==4.13.0
iniconfig==1.1.1
ipykernel==6.17.1
ipython==7.34.0
ipython==8.10.0
ipython-genutils==0.2.0
ipywidgets==8.0.2
itsdangerous==2.1.2
Expand Down Expand Up @@ -109,7 +109,7 @@ plotly==5.11.0
pluggy==1.0.0
plumpy==0.21.3
prometheus-client==0.15.0
prompt-toolkit==3.0.33
prompt-toolkit==3.0.37
psutil==5.9.4
psycopg2-binary==2.9.5
ptyprocess==0.7.0
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements-py-3.8.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ importlib-metadata==4.8.2
importlib-resources==5.4.0
iniconfig==1.1.1
ipykernel==6.5.1
ipython==7.31.1
ipython==8.10.0
ipython-genutils==0.2.0
ipywidgets==7.6.5
itsdangerous==2.0.1
Expand Down Expand Up @@ -93,7 +93,7 @@ plotly==5.4.0
pluggy==1.0.0
plumpy==0.21.3
prometheus-client==0.12.0
prompt-toolkit==3.0.23
prompt-toolkit==3.0.37
psutil==5.8.0
psycopg2-binary==2.9.1
ptyprocess==0.7.0
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements-py-3.9.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ imagesize==1.3.0
importlib-metadata==4.8.2
iniconfig==1.1.1
ipykernel==6.5.1
ipython==7.31.1
ipython==8.10.0
ipython-genutils==0.2.0
ipywidgets==7.6.5
itsdangerous==2.0.1
Expand Down Expand Up @@ -92,7 +92,7 @@ plotly==5.4.0
pluggy==1.0.0
plumpy==0.21.3
prometheus-client==0.12.0
prompt-toolkit==3.0.23
prompt-toolkit==3.0.37
psutil==5.8.0
psycopg2-binary==2.9.1
ptyprocess==0.7.0
Expand Down

0 comments on commit 5fe60ec

Please sign in to comment.