Skip to content

Commit

Permalink
Build wheel against py3 only (#1098)
Browse files Browse the repository at this point in the history
* Build wheel against py3 only

* put everything in setup.py
  • Loading branch information
Spitfire1900 authored May 27, 2023
1 parent b3e21c2 commit 89cf5c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ def run(self):
author='Google Inc.',
maintainer='Bill Wendling',
maintainer_email='morbo@google.com',
options={'bdist_wheel': {
'python_tag': 'py3'
}},
packages=find_packages('.'),
project_urls={
'Source': 'https://github.com/google/yapf',
Expand All @@ -63,13 +66,12 @@ def run(self):
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
],
Expand Down

0 comments on commit 89cf5c0

Please sign in to comment.