kalliope-project / kalliope

Kalliope is a framework that will help you to create your own personal assistant.
https://kalliope-project.github.io/
GNU General Public License v3.0
1.71k stars 229 forks source link

Added python 3.11 snowboy .so #690

Open jaggzh opened 1 year ago

jaggzh commented 1 year ago

I built a _snowboydetect.so for the new Debian Stable, which uses Python 3.11.

jaggzh commented 1 year ago

re: https://github.com/kalliope-project/kalliope/issues/689

Sispheor commented 11 months ago

OMG just realized that anybody can review and approve by default now 😅.

Sispheor commented 11 months ago

Test are not passing because your are not rebased on the last dev version. Please do so.

cprn commented 1 month ago

@jaggzh it'd be awesome if you could do this in your branch:

git switch dev    # switch to `origin/dev` branch locally
git pull          # make sure you have the latest version of that branch
git switch master # switch back to your local `master` branch
git rebase dev    # apply your changes on top of `origin/dev` instead of `origin/master` from which you've initially forked
git push          # update your merge request when you're done

There should be no conflicts so it should be enough to make the PR pass.

In case there are any, you'll have to solve them in your editor before you push, e.g.:

vscode file.ext       # make changes and save
git add file.ext      # tell git to track your change
git rebase --continue # go to next conflict or finish rebasing
git commit            # commit your conflict resolutions