Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup.py with python 3.8 #1371

Merged
merged 2 commits into from Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Expand Up @@ -7,6 +7,7 @@ Release Notes
* Fixes
* Changes
* Minor updates to work with Koalas version 1.7.0 (:pr:`1351`)
* Explicitly mention Python 3.8 support in setup.py classifiers (:pr:`1371`)
* Documentation Changes
* Testing Changes
* Make release notes updated check separate from unit tests (:pr:`1347`)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -31,7 +31,8 @@
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
install_requires=open('requirements.txt').readlines(),
python_requires='>=3.6, <4',
Expand Down