diff --git a/AUTHORS.rst b/AUTHORS.rst index 1090d2f03..cf1883228 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -20,7 +20,7 @@ Leads - `@szuckerman `_ | `contributions `_ - `@zbarry `_ | `contributions `_ - Co-led sprint at SciPy 2019. -- `@HectorM14 `_ | `contributions `_ +- `@hectormz `_ | `contributions `_ - `@jk3587 `_ | `contributions `_ - Tagged issues at SciPy 2019. - `@sallyhong `_ | `contributions `_ @@ -76,4 +76,3 @@ Contributors - `@puruckertom `_ | `contributions `_ - `@thomasjpfan `_ | `contributions `_ - `@jiafengkevinchen `_ | `contributions `_ - diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index c358a4755..f9facd531 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -228,6 +228,11 @@ and append bin/python to the end of the path. Click OK and you should be good to go! +Code Compatibility +------------------ + +pyjanitor supports Python 3.6+, so all contributed code must maintain this compatibility. + Pull Request Guidelines ----------------------- diff --git a/README.rst b/README.rst index 6f75e1f91..368490aea 100644 --- a/README.rst +++ b/README.rst @@ -143,6 +143,8 @@ Installation conda install pyjanitor -c conda-forge +``pyjanitor`` requires Python 3.6+. + Functionality ------------- diff --git a/pyproject.toml b/pyproject.toml index f21de5254..7ef69bef7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] line-length = 79 -py36 = true +target-version = ['py36', 'py37'] include = '\.pyi?$' exclude = ''' /( diff --git a/setup.py b/setup.py index eec6e8012..e7f2c1e84 100644 --- a/setup.py +++ b/setup.py @@ -15,4 +15,5 @@ def requirements(): url="https://github.com/ericmjl/pyjanitor", packages=["janitor"], install_requires=requirements(), + python_requires=">=3.6", )