Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 9178fdd

Browse files
cooperleesfxdgear
authored andcommitted
Set metadata to Py3 only + Remove Universal Wheel (#50)
* Set metadata to Py3 only + Remove Universal Wheel - I see not inclusion of deps + support in code for Python 2 - Lets remove making a universal wheel then + flag in setup.py that this code is Python 3 only * Add python_requires + use same quotation marks everywhere
1 parent 2f35346 commit 9178fdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,14 @@
4141
"Intended Audience :: Developers",
4242
"Operating System :: OS Independent",
4343
"Programming Language :: Python",
44-
"Programming Language :: Python :: 3",
44+
"Programming Language :: Python :: 3 :: Only",
4545
"Programming Language :: Python :: 3.4",
4646
"Programming Language :: Python :: 3.5",
47+
"Programming Language :: Python :: 3.6",
4748
"Programming Language :: Python :: Implementation :: CPython",
4849
],
4950
install_requires=install_requires,
51+
python_requires="~=3.4",
5052

5153
test_suite="test_elasticsearch_async.run_tests.run_all",
5254
tests_require=tests_require,

0 commit comments

Comments
 (0)