Skip to content

Commit

Permalink
Drop support for Python 3.6 (#309)
Browse files Browse the repository at this point in the history
Remove the compatibility metadata, remove from the CI matrix, bump the
python_requires to 3.7+.
  • Loading branch information
santisoler authored May 5, 2022
1 parent d132abb commit f336aa8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- macos
- windows
python:
- "3.6"
- "3.7"
- "3.9"
dependencies:
- latest
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Installing
Which Python?
-------------

You'll need **Python 3.6 or greater**.
You'll need **Python 3.7 or greater**.

We recommend using the
`Anaconda Python distribution <https://www.anaconda.com/download>`__
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ classifiers =
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -38,7 +37,7 @@ project_urls =
zip_safe = True
include_package_data = True
packages = find:
python_requires = >=3.6
python_requires = >=3.7
install_requires =
numpy
pandas
Expand Down

0 comments on commit f336aa8

Please sign in to comment.