Skip to content

Commit 5a0b623

Browse files
committed
Final edits from review
1 parent 3de7a80 commit 5a0b623

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ tmp/
77
__pycache__
88
*notes-from-review.md
99
*.idea*
10+
11+
.vale.ini
12+
styles/*

tutorials/intro.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ After reading this lesson you will:
4747

4848
:::
4949

50-
:::{todo}
51-
You might also hear people use the term "library" the same way.
52-
:::
53-
5450
## What is a Python package?
5551

5652
At a high level, you can think about a Python package as a toolbox
@@ -115,7 +111,7 @@ Before creating a user-facing package, it's important to consider all of the abo
115111
<img src="../images/tutorials/package-components.png" alt="Diagram showing .. more here if this stays." width="500px">
116112

117113
The elements of a Python package include code, documentation, tests,
118-
an OSI-approved license and a specific directory structure.
114+
an OSI-approved license and infrastructure.
119115
Maintainers are at the core making sure everything works and is up to
120116
date while fixing bugs and addressing user concerns.
121117
:::
@@ -174,7 +170,7 @@ GitHub and GitLab also both offer community features such as issues that allow:
174170

175171
### Continuous integration and continuous deployment
176172

177-
GitHub and GitLab also provide continuous integration and continuous deployment (CI/CD). Continuous integration (CI) refers to a platform that automatically runs a specific job when a certain event occurs, whereas continuous deployment (CD) is an extension of CI that refers to not only running or building but also to publishing the final outputs somewhere.
173+
GitHub and GitLab also provide continuous integration and continuous deployment (CI/CD). Continuous integration (CI) refers to a platform that automatically runs a specific job when a certain event occurs, whereas continuous deployment (CD) is an extension of CI that refers to not only running or building but also to publishing the final outputs somewhere.
178174

179175
**An example of Continuous integration:**
180176
* When someone submits a change to your code, your tests will run across different operating systems and the code will be checked for format issues.

0 commit comments

Comments
 (0)