Skip to content

Commit

Permalink
Fix build wheel warnings (#503)
Browse files Browse the repository at this point in the history
* MANIFEST.in remove non-existing included files
* setup.cfg Removing deprecated universal wheel option
* Removing deprecated tests_require parameter
  • Loading branch information
leszekhanusz authored Oct 28, 2024
1 parent dbafcd0 commit 013eebd
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ include README.md
include CONTRIBUTING.md
include .readthedocs.yaml

include dev_requirements.txt
include Makefile

include tox.ini

include gql/py.typed

recursive-include tests *.py *.graphql *.cnf *.yaml *.pem
recursive-include docs *.txt *.rst conf.py Makefile make.bat *.jpg *.png *.gif
recursive-include docs *.txt *.rst conf.py Makefile make.bat
recursive-include docs/code_examples *.py

prune docs/_build
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[wheel]
universal = 1

[flake8]
max-line-length = 88

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@
# PEP-561: https://www.python.org/dev/peps/pep-0561/
package_data={"gql": ["py.typed"]},
install_requires=install_requires,
tests_require=install_all_requires + tests_requires,
extras_require={
"all": install_all_requires,
"test": install_all_requires + tests_requires,
Expand Down

0 comments on commit 013eebd

Please sign in to comment.