Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
malkstar authored and gotcha committed Dec 13, 2022
1 parent 546ebce commit 0b45377
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ Changelog
- 3.11 support for run as module and run as script.
[nphilipp, gotcha]

- Based on OSV:PYSEC-2022-12 change ipython dependencies,
for users using python 3.6, install 7.16.3 <= IPython < 7.17.0,
for users using python>3.6, install IPython >= 7.31.1.
[malkstar]


0.13.9 (2021-06-02)
-------------------
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
# FTR, `decorator` is also a dependency of Ipython.
':python_version == "3.4"': ['ipython >= 6.0.0, < 7.0.0', 'toml >= 0.10.2', 'decorator < 5.0.0'],
':python_version == "3.5"': ['ipython >= 7.0.0, < 7.10.0', 'toml >= 0.10.2', 'decorator'],
':python_version == "3.6"': ['ipython >= 7.10.0, < 7.17.0', 'tomli', 'decorator'],
':python_version > "3.6" and python_version < "3.11"': ['ipython >= 7.17.0', 'tomli', 'decorator'],
':python_version >= "3.11"': ['ipython >= 7.17.0', 'decorator'],
':python_version == "3.6"': ['ipython >= 7.16.3, < 7.17.0', 'tomli', 'decorator'],
':python_version > "3.6" and python_version < "3.11"': ['ipython >= 7.31.1', 'tomli', 'decorator'],
':python_version >= "3.11"': ['ipython >= 7.31.1', 'decorator'],
},
tests_require=[
'mock; python_version<"3"'
Expand Down

0 comments on commit 0b45377

Please sign in to comment.