Skip to content

Commit

Permalink
Remove support from end-of-life Python 3.6
Browse files Browse the repository at this point in the history
(In anticipation of possibly adding type support)
  • Loading branch information
sergiocorreia committed Mar 7, 2023
1 parent c4e8125 commit dd8b03a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To install panflute from PyPI, open the command line and type::

pip install panflute

- Works with Python 3.6+, and PyPy
- Works with Python 3.7+, and PyPy
- On Windows, you might need to open the command line (``cmd``) as administrator (`ctrl+shift+enter`).

To install the latest Github version of panflute, type::
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand All @@ -87,7 +86,7 @@
# simple. Or you can use find_packages().
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']),

python_requires='>=3.6',
python_requires='>=3.7',
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
Expand Down

0 comments on commit dd8b03a

Please sign in to comment.