Skip to content

Commit

Permalink
Version 1.0.2: fix requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaochao Dong (@damnever) <the.xcdong@gmail.com>
  • Loading branch information
damnever committed Nov 13, 2022
1 parent cddc46d commit c68d372
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### Change Logs

#### Version 1.0.2 (2022.11.12)

- Fix requirements list in setup.py [#122](https://github.com/damnever/pigar/pull/122).

#### Version 1.0.1 (2022.11.12)

- Support `*.ipynb` magics and shell command, fixed [#87](https://github.com/damnever/pigar/issues/87). See [#102](https://github.com/damnever/pigar/pull/102), [#117](https://github.com/damnever/pigar/pull/117), [#118](https://github.com/damnever/pigar/pull/118) for details.
Expand Down
2 changes: 1 addition & 1 deletion pigar/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from __future__ import print_function, division, absolute_import

version = __version__ = '1.0.1'
version = __version__ = '1.0.2'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
change_logs = f.read()

install_requires = [
'colorama>=0.3.9', 'requests>=2.20.0', 'nbformat>=4.4.0', 'packaging>=20.9'
'futures;python_version<"3.2"'
'colorama>=0.3.9', 'requests>=2.20.0', 'nbformat>=4.4.0',
'packaging>=20.9', 'futures;python_version<"3.2"'
]

setup(
Expand Down

0 comments on commit c68d372

Please sign in to comment.