Skip to content

Commit

Permalink
Drop Python 3.6 support (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayqi authored Mar 16, 2022
1 parent 53da0e6 commit 576e1a9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]
defaults:
run:
shell: bash -l {0}
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## 0.5.0 (2022-02-16)

- Removes support for Python 3.6.
- Removes explicit dependency on `pywinpty` for Windows environments.

## 0.4.1 (2022-02-15)

This will be the last version of `nbautoexport` that will have been tested on and officially support Python 3.6.
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ nbformat
notebook
packaging
pydantic
pywinpty<=2.0.2; platform_system == 'Windows'
traitlets
typer>=0.3.0
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,18 @@ def load_requirements(path: Path):
setup(
author="DrivenData",
author_email="info@drivendata.org",
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
description=(
"Automatically export Jupyter notebooks to various file formats (.py, .html, and more) on "
Expand Down

0 comments on commit 576e1a9

Please sign in to comment.