Skip to content

Commit 6bee022

Browse files
committed
deploy: 9dbfe5c
1 parent 778c9d2 commit 6bee022

8 files changed

+15
-15
lines changed

.doctrees/environment.pickle

644 Bytes
Binary file not shown.
-32 Bytes
Binary file not shown.
415 Bytes
Binary file not shown.

_sources/tutorials/installable-code.md.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,8 @@ To begin:
417417

418418
* Remove support for Python 3.8
419419

420-
Also because you are creating a pure Python package, you can
421-
in this lesson, you can remove the following classifiers:
420+
Since you are creating a pure Python package in this lesson,
421+
you can remove the following classifiers:
422422

423423
```toml
424424
classifiers = [

_sources/tutorials/publish-conda-forge.md.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -377,9 +377,9 @@ Below we break down each element of that list.
377377

378378
The pyOpenSci tutorials are all pure Python and as such do not use static libraries in a linked or shipped (included in the package distribution) format.
379379

380-
If your package has a more complex builds that includes
380+
If your package has a more complex build that includes
381381
links to extensions written in other languages such as
382-
C++, then be sure that include the proper LICENSE(s) for those extensions in your metadata.
382+
C++, then be sure to include the proper licenses for those extensions in your metadata.
383383

384384
:::{note}
385385
If you want to learn more about static libraries, then [this overview](https://pypackaging-native.github.io/background/compilation_concepts/#shared-vs-static-libraries) might help.
@@ -454,19 +454,19 @@ We cover that next.
454454

455455
Every time you create a new release on PyPI, the conda-forge bots will recognize the release and will rebuild the newly released version of your package. This process may take a day or two to complete so be patient.
456456

457-
Once the conda-forge build it complete, all of the maintainers of your conda-forge feedstock will get a ping on GitHub that a new pull request has been opened.
457+
Once the conda-forge build is complete, all of the maintainers of your conda-forge feedstock will get a ping on GitHub that a new pull request has been opened.
458458

459459
Review the pull request. If all tests are passing, you can merge it. Shortly after merging your pull request, the conda-forge release will be available for users to install:
460460

461461
`conda install -c conda-forge yourpackage`
462462

463463
## <i class="fa-solid fa-hands-bubbles"></i> Wrap up
464464

465-
If you have walked through this entire tutorial series you have now:
465+
If you have walked through this entire tutorial series you will now:
466466

467467
1. Understand [what a Python package is ](intro.md)
468468
2. Know how to [make your code installable](installable-code.md) into Python environments
469-
3. Know how to create a pyproject.toml file, a README file, and a License and code of conduct.
469+
3. Know how to create a `pyproject.toml` file, a `README` file, and a `LICENSE` and code of conduct.
470470
4. Know how to [publish your package to PyPI](publish-pypi.md) and
471471
5. Know how to publish your package to conda-forge
472472

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tutorials/installable-code.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -867,8 +867,8 @@ <h3>OPTIONAL: Adjust project classifiers<a class="headerlink" href="#optional-ad
867867
<ul class="simple">
868868
<li><p>Remove support for Python 3.8</p></li>
869869
</ul>
870-
<p>Also because you are creating a pure Python package, you can
871-
in this lesson, you can remove the following classifiers:</p>
870+
<p>Since you are creating a pure Python package in this lesson,
871+
you can remove the following classifiers:</p>
872872
<div class="highlight-toml notranslate"><div class="highlight"><pre><span></span><span class="n">classifiers</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span>
873873
<span class="s2">&quot;Programming Language :: Python :: Implementation :: CPython&quot;</span><span class="p">,</span>
874874
<span class="s2">&quot;Programming Language :: Python :: Implementation :: PyPy&quot;</span><span class="p">,</span>

tutorials/publish-conda-forge.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -856,9 +856,9 @@ <h3 class="rubric" id="conda-forge-staged-recipes-pull-request-checklist">Conda-
856856
</div></blockquote>
857857
<p class="sd-card-text"><strong>Translation:</strong> A static library refers to a copy of a package built into your package. If your package is a pure Python package, then you can check that your package does not ship static libraries as this does not apply to you.</p>
858858
<p class="sd-card-text">The pyOpenSci tutorials are all pure Python and as such do not use static libraries in a linked or shipped (included in the package distribution) format.</p>
859-
<p class="sd-card-text">If your package has a more complex builds that includes
859+
<p class="sd-card-text">If your package has a more complex build that includes
860860
links to extensions written in other languages such as
861-
C++, then be sure that include the proper LICENSE(s) for those extensions in your metadata.</p>
861+
C++, then be sure to include the proper licenses for those extensions in your metadata.</p>
862862
<div class="admonition note">
863863
<p class="admonition-title">Note</p>
864864
<p class="sd-card-text">If you want to learn more about static libraries, then <a class="reference external" href="https://pypackaging-native.github.io/background/compilation_concepts/#shared-vs-static-libraries">this overview</a> might help.</p>
@@ -927,17 +927,17 @@ <h3><i class="fa-solid fa-wand-magic-sparkles"></i> Congratulations - you have a
927927
<section id="maintaining-your-conda-forge-feedstock">
928928
<h2>Maintaining your conda-forge feedstock<a class="headerlink" href="#maintaining-your-conda-forge-feedstock" title="Link to this heading">#</a></h2>
929929
<p>Every time you create a new release on PyPI, the conda-forge bots will recognize the release and will rebuild the newly released version of your package. This process may take a day or two to complete so be patient.</p>
930-
<p>Once the conda-forge build it complete, all of the maintainers of your conda-forge feedstock will get a ping on GitHub that a new pull request has been opened.</p>
930+
<p>Once the conda-forge build is complete, all of the maintainers of your conda-forge feedstock will get a ping on GitHub that a new pull request has been opened.</p>
931931
<p>Review the pull request. If all tests are passing, you can merge it. Shortly after merging your pull request, the conda-forge release will be available for users to install:</p>
932932
<p><code class="docutils literal notranslate"><span class="pre">conda</span> <span class="pre">install</span> <span class="pre">-c</span> <span class="pre">conda-forge</span> <span class="pre">yourpackage</span></code></p>
933933
</section>
934934
<section id="wrap-up">
935935
<h2><i class="fa-solid fa-hands-bubbles"></i> Wrap up<a class="headerlink" href="#wrap-up" title="Link to this heading">#</a></h2>
936-
<p>If you have walked through this entire tutorial series you have now:</p>
936+
<p>If you have walked through this entire tutorial series you will now:</p>
937937
<ol class="arabic simple">
938938
<li><p>Understand <a class="reference internal" href="intro.html"><span class="std std-doc">what a Python package is </span></a></p></li>
939939
<li><p>Know how to <a class="reference internal" href="installable-code.html"><span class="std std-doc">make your code installable</span></a> into Python environments</p></li>
940-
<li><p>Know how to create a pyproject.toml file, a README file, and a License and code of conduct.</p></li>
940+
<li><p>Know how to create a <code class="docutils literal notranslate"><span class="pre">pyproject.toml</span></code> file, a <code class="docutils literal notranslate"><span class="pre">README</span></code> file, and a <code class="docutils literal notranslate"><span class="pre">LICENSE</span></code> and code of conduct.</p></li>
941941
<li><p>Know how to <a class="reference internal" href="publish-pypi.html"><span class="std std-doc">publish your package to PyPI</span></a> and</p></li>
942942
<li><p>Know how to publish your package to conda-forge</p></li>
943943
</ol>

0 commit comments

Comments
 (0)