-
Notifications
You must be signed in to change notification settings - Fork 1
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
[IV-21-22] Objetivo 3 #11
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
cc1f24a
add poetry dependencies closes #10
arguellesm 2876591
add check task to invoke closes #9
arguellesm f9c08ac
update iv.yaml
arguellesm 0708750
update README.md
arguellesm 08de7fc
restructure docs directory
arguellesm 4f06b8e
add tools documentation
arguellesm 653d7ef
add toc README.md
arguellesm 3a46bb4
add discussed alternatives and requirements
arguellesm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
## Development tools and why | ||
|
||
### [Poetry](https://python-poetry.org/) | ||
|
||
We use Poetry as a dependency management tool to keep track | ||
of the libraries needed to build the project. This makes it | ||
easier for anyone to replicate the project. | ||
|
||
The main alternatives to Poetry are Pip and Pipenv: | ||
|
||
- [Pip](https://pypi.org/project/pip/) | ||
|
||
Pip is a package manager, meaning that dependency updates | ||
must be done manually. This will defeat the purpose of using | ||
it for automation. | ||
|
||
- [Pipenv](https://pipenv.pypa.io/en/latest/) | ||
|
||
The main differences between Pipenv and Poetry are that Poetry | ||
has much faster install times and supports `pyproject.toml`, | ||
which is the official Python file for dependency management (see | ||
[PEP 518](https://www.python.org/dev/peps/pep-0518/#file-format)). | ||
|
||
|
||
### [Invoke](https://www.pyinvoke.org/) | ||
|
||
Invoke is our task runner of choice. It inherits a minimal yet | ||
powerful philosophy from GNU Make and is broadly used among the | ||
Python community. | ||
|
||
Some alternatives are: | ||
|
||
- [Pypyr](https://pypyr.io/docs/) | ||
|
||
Pypyr uses pipelines defined in yaml. There are many differences | ||
between these two, but the key for choosing one over the other | ||
was being more used to Python and finding easier to work with | ||
Invoke's approach. | ||
|
||
- [doit](https://pydoit.org/contents.html#) | ||
|
||
_doit_ has quite a similar approach to Invoke and uses Python as | ||
well. However, Invoke's community is much bigger, which usually | ||
translates to more resources and easier troubleshooting. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
lenguaje: python | ||
|
||
entidad: | ||
- src/article.py | ||
- src/globals.py | ||
|
||
automatizar: | ||
fichero: tasks.py | ||
orden: inv |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
You can't list stuff and a posteriori reasons to not choose them; all requirements need to be laid out in advance, as I commented in class. Please bear this in mind, because it will become increasingly important in the rest of the objectives.
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.
ok, I'll keep it in mind for the next ones, thanks! 👍🏼