-
-
Notifications
You must be signed in to change notification settings - Fork 545
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
Poetry Implementation #206
Poetry Implementation #206
Conversation
Additional changes: - Changed Python version to 3.9
Additional changes: - Changed Dockerfile Python image from 3.6-stretch to 3
This change avoids certain relative import errors like: - "No module named modules"
There are some fields in both of the pyproject.toml files that I don't know whether they are right or not. These are: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@neolight1010 Looks good to me. :)
License is GNU General Public License v3.0, which is correct in the .toml
file.
v1.3 is our latest release version.
Authors for now you can leave it as dedsecinside. Later we'll add the names of all our contributors.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code lgtm, great work!
closes #198
Changes Proposed
Also, a small change to
install.sh
should fix relative import errors when using that method of installation.Other minor changes:
Explanation of Changes
Currently, TorBot uses a simple pip freeze and requirements.txt method for managing its dependencies. This has led to some issues, like #177. With the use of a proper dependency management tool, this can be avoided.
Also, issue #198 is resolved by a adding a
--paths
flag to thepyinstaller
command ininstall.sh
. This also fixes the same error when trying to run the Docker image of the app.Screenshots of new feature/change