-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Remove unneeded directory "schema" (#5753)
* Remove unneeded directory "schema" * add schema to excluded packages * sync build linux & mac * fix make pr * exclude schema from setup.py + PYTHONPATH for make schema * run schema with -m --------- Co-authored-by: Lucas <[email protected]>
- Loading branch information
1 parent
a2decd0
commit 65268b9
Showing
4 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ def read_version(): | |
author_email="[email protected]", | ||
url="https://github.com/aws/aws-sam-cli", | ||
license="Apache License 2.0", | ||
packages=find_packages(exclude=["tests.*", "tests", "installer.*", "installer"]), | ||
packages=find_packages(exclude=["tests.*", "tests", "installer.*", "installer", "schema.*", "schema"]), | ||
keywords="AWS SAM CLI", | ||
# Support Python 3.7 or greater | ||
python_requires=">=3.7, <=4.0, !=4.0", | ||
|