Skip to content

[pull] main from ambianic:main #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,8 @@ jobs:
'master', 'main'
]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Run Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Semantic release completed
run: echo Semantic release flow completed
1 change: 1 addition & 0 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
# twine upload dist/*
deploy-prod:
name: Deploy to PyPi.org
if: ${{ github.repository_owner == 'ambianic' }}
needs: [deploy-validate]
runs-on: ubuntu-latest
steps:
Expand Down
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Semantic Versioning Changelog

## [1.0.9](https://github.com/ambianic/fall-detection/compare/v1.0.8...v1.0.9) (2021-10-04)


### Bug Fixes

* prod deployment for main upstream repo only ([3fc569b](https://github.com/ambianic/fall-detection/commit/3fc569b733569188da1f4311c26bf8cb9909c9b7))

## [1.0.8](https://github.com/ambianic/fall-detection/compare/v1.0.7...v1.0.8) (2021-10-04)


### Bug Fixes

* formatting for pypi ([24ced87](https://github.com/ambianic/fall-detection/commit/24ced8763170b4e7e800c12c5169ad0842f431a8))

## [1.0.7](https://github.com/ambianic/fall-detection/compare/v1.0.6...v1.0.7) (2021-10-04)


### Bug Fixes

* author field ([5a7cd89](https://github.com/ambianic/fall-detection/commit/5a7cd895a4386c70617edeb2336f851277729fea))

## [1.0.6](https://github.com/ambianic/fall-detection/compare/v1.0.5...v1.0.6) (2021-10-04)


### Bug Fixes

* sem rel script ([7dc999d](https://github.com/ambianic/fall-detection/commit/7dc999dce4e967f7417bc82f392e080984e23ab0))

## [1.0.5](https://github.com/ambianic/fall-detection/compare/v1.0.4...v1.0.5) (2021-10-04)


### Bug Fixes

* pypi upload command ([246e8d1](https://github.com/ambianic/fall-detection/commit/246e8d1a35a07c2cb3ad16d8e32952af1e13cd5a))

## [1.0.4](https://github.com/ambianic/fall-detection/compare/v1.0.3...v1.0.4) (2021-10-04)


Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ _This repo is the new home of the fall detection model used in Ambianic Edge. We

# What's included in this repo

- [x] Standalone Python ML library for people fall detection based on Tensorflow and [PoseNet 2.0](https://github.com/tensorflow/tfjs-models/tree/master/posenet).
- [X] Python source code
- [x] [Jupyter Notebook](https://mybinder.org/v2/gh/ambianic/fall-detection/main?filepath=Demo.ipynb) to interactively test and experiement with the model
- [x] CI & test suite
- [x] Training and testing data sets
- [x] Third party ML models used as building blocks
- [ ] Wheel package published on PyPi
- Standalone Python ML library for people fall detection based on Tensorflow and [PoseNet 2.0](https://github.com/tensorflow/tfjs-models/tree/master/posenet).
- Python source code
- [Jupyter Notebook](https://mybinder.org/v2/gh/ambianic/fall-detection/main?filepath=Demo.ipynb) to interactively test and experiement with the model
- CI & test suite
- Training and testing data sets
- Third party ML models used as building blocks
- Wheel package [published on PyPi](https://pypi.org/project/falldetect/)

# Project motivation

Expand Down
7 changes: 4 additions & 3 deletions src/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[metadata]
name = falldetect
version = 1.0.4
author = 'Bhavika Kanani, Ivelin Ivanov'
author_email = 'bhavika@softmaxai.com, ivelin.ivanov@ambianic.ai'
version = 1.0.9
author = Bhavika Kanani, Ivelin Ivanov
author_email = bhavika@softmaxai.com, ivelin.ivanov@ambianic.ai
description = Standalone Python ML library for people fall detection based on Tensorflow and PoseNet 2.0.
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -19,3 +19,4 @@ classifiers =
[options]
packages = find:
python_requires = >=3.7