Skip to content
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

🐞 Bug Bash wk 2🐞 Add: second lesson and images #120

Closed
wants to merge 19 commits into from
Closed
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ tmp/
__pycache__
*notes-from-review.md
*.idea*
<<<<<<< HEAD

.vale.ini
styles/*
=======
# grammar / syntax checkers
.vale.ini
styles/
>>>>>>> 7e6685f (Rename diagram)
Binary file added images/tutorials/code-to-python-package.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ by the community now! Join our community review process or watch development of
:::{card} ✿ Tutorials ✿
:class-card: left-aligned

[What is a Python package?](/tutorials/intro)
* [What is a Python package?](/tutorials/intro)
* [Make your code installable](/tutorials/1-installable-code)

:::
::::
Expand Down Expand Up @@ -188,14 +189,14 @@ If you have questions about our peer review process or packaging in general, you

This is a living guide that is updated as tools and best practices evolve in the Python packaging ecosystem. We will be adding new content over the next year.


```{toctree}
:hidden:
:caption: Testing

:caption: Tutorials
Tutorials <tutorials/intro>

```


```{toctree}
:hidden:
:caption: Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
You need to build your Python package in order to publish it to PyPI (or Conda). The build process organizes your code and metadata into a distribution format that can be uploaded to PyPI and subsequently downloaded and installed by users. NOTE: you need to publish a sdist to PyPI in order for conda-forge to properly build your package automatically.
:::

(building-package)=
## What is building a Python package?

To [publish your Python package](build_workflow) and make it easy for anyone to install, you first need to build it.
Expand Down
Loading