Skip to content

Commit

Permalink
Jupytext 1.8.2 depends on python>=3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Jan 4, 2021
1 parent 4ac643e commit 5f801bd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Jupytext ChangeLog
==================

1.8.2 (2021-01-04)
------------------

**Changed**
- Jupytext 1.8.2 depends on `python>=3.6`. The last version of Jupytext explicitly tested with Python 2.7 and 3.5 was Jupytext 1.7.1, cf. [#697](https://github.com/mwouts/jupytext/issues/697).


1.8.1 (2021-01-03)
------------------

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- defaults
- conda-forge
dependencies:
- python
- python>=3.6
- jupyter
- jupyterlab
- pyyaml
Expand Down
2 changes: 1 addition & 1 deletion jupytext/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Jupytext's version number"""

__version__ = "1.8.1"
__version__ = "1.8.2"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#markdown-it-py~=0.6.0
nbformat>=4.0.0
pyyaml
toml
markdown-it-py~=0.6.0
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,8 @@
],
entry_points={"console_scripts": ["jupytext = jupytext.cli:jupytext"]},
tests_require=["pytest"],
install_requires=[
"markdown-it-py~=0.6.0; python_version >= '3.6'",
"nbformat>=4.0.0",
"pyyaml",
"toml",
],
install_requires=["nbformat>=4.0.0", "pyyaml", "toml", "markdown-it-py~=0.6.0"],
python_requires="~=3.6",
extras_require={
# left for back-compatibility
"myst": [],
Expand Down

0 comments on commit 5f801bd

Please sign in to comment.