Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 955 Bytes

BUILDING.md

File metadata and controls

36 lines (22 loc) · 955 Bytes

Poetry

Want to know more about Poetry? Check its documentation.

Details about Poetry

Poetry's commands are very intuitive and easy to learn, like:

  • poetry add numpy@latest
  • poetry run pytest
  • poetry publish --build

etc

Building and releasing your package

Building a new version of the application contains steps:

  • Bump the version of your package poetry version <version>. You can pass the new version explicitly, or a rule such as major, minor, or patch. For more details, refer to the Semantic Versions standard.
  • Make a commit to GitHub.
  • Create a GitHub release.
  • And... publish 🙂 poetry publish --build

Updating Lambda

To update the Lambda function, you need to:

  • Build the package make build-lambda
  • Upload the zip file to AWS Lambda