Skip to content

Commit

Permalink
Fix prompt-toolkit for ipython 8.18 (#605)
Browse files Browse the repository at this point in the history
ipython 8.18.0 requires prompt-toolkit >= 3.0.41 (ipython/ipython#14255).
It was fixed in ipython 8.18.1 (ipython/ipython#14257)
but missed in conda-forge package.
Fixed in build 2 of the recipe: conda-forge/ipython-feedstock#204
  • Loading branch information
beenje committed Dec 4, 2023
1 parent 8dcc8b2 commit b2e0795
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions recipe/patch_yaml/ipython.yaml
Expand Up @@ -9,3 +9,16 @@ if:
has_depends: "jedi?( *)"
then:
- add_depends: "jedi <0.18"
---
if:
name: ipython
version_ge: 8.18.0
version_le: 8.18.1
timestamp_lt: 1701703017000
then:
- replace_depends:
old: prompt-toolkit >=3.0.30,<3.1.0,!=3.0.37
new: prompt-toolkit >=3.0.41,<3.1.0
- replace_depends:
old: prompt_toolkit >=3.0.30,<3.1.0,!=3.0.37
new: prompt-toolkit >=3.0.41,<3.1.0

0 comments on commit b2e0795

Please sign in to comment.