Skip to content

Commit

Permalink
Add support to Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
lhgomes committed May 5, 2023
1 parent 6bb120a commit 4c7f791
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions pack.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
mkdir -p build/python/lib/python3.7/site-packages
mkdir -p build/python/lib/python3.8/site-packages
mkdir -p build/python/lib/python3.9/site-packages
mkdir -p build/python/lib/python3.10/site-packages
cp -R phhelper build/python/lib/python3.7/site-packages
cp -R phhelper build/python/lib/python3.8/site-packages
cp -R phhelper build/python/lib/python3.9/site-packages
cp -R phhelper build/python/lib/python3.10/site-packages
cd build
zip -q -r ../phhelper.zip python
cd ..
Binary file added phhelper/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

setuptools.setup(
name='phhelper',
version='0.9.18',
version='0.9.23',
author='Luiz Henrique Gomes',
author_email="lhgnet@gmail.com",
description='Python Handler Helper for Lambda',
long_description=long_description,
long_description_content_type='text/x-rst',
url="https://github.com/lhgomes/phhelper",
packages=setuptools.find_packages(),
packages=['phhelper'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 4c7f791

Please sign in to comment.