Skip to content

Commit

Permalink
Package braintree.graphql.enums
Browse files Browse the repository at this point in the history
  • Loading branch information
cedk committed Jan 29, 2025
1 parent c3886ea commit aa04e27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

* Package braintree.graphql.enums

## 4.33.0
* Add support for creating and updating PayPal customer session
* Add support for getting PayPal customer recommendations
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
author="Braintree",
author_email="[email protected]",
url="https://developer.paypal.com/braintree/docs/reference/overview",
packages=["braintree", "braintree.dispute_details", "braintree.exceptions", "braintree.exceptions.http", "braintree.graphql", "braintree.merchant_account", "braintree.util", "braintree.test"],
packages=["braintree", "braintree.dispute_details", "braintree.exceptions", "braintree.exceptions.http", "braintree.graphql", "braintree.graphql.enums", "braintree.merchant_account", "braintree.util", "braintree.test"],
package_data={"braintree": ["ssl/*"]},
install_requires=["requests>=0.11.1,<3.0"],
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_packages_includes_all_packages(self):
packages_from_setup = re.findall('"(.*?)"', str(packages_line))

packages_from_directories = ['braintree']
directories_that_dont_have_packages = ['braintree.ssl', 'braintree.graphql.enums', 'braintree.graphql.inputs', 'braintree.graphql.types', 'braintree.graphql.unions']
directories_that_dont_have_packages = ['braintree.ssl', 'braintree.graphql.inputs', 'braintree.graphql.types', 'braintree.graphql.unions']
for dirname, dirnames, _ in os.walk('braintree'):
for subdirname in dirnames:
package_from_directory = re.sub('/', '.', os.path.join(dirname, subdirname))
Expand Down

0 comments on commit aa04e27

Please sign in to comment.