diff --git a/locales/es/LC_MESSAGES/tutorials.po b/locales/es/LC_MESSAGES/tutorials.po index a58ae875..b9f8d892 100644 --- a/locales/es/LC_MESSAGES/tutorials.po +++ b/locales/es/LC_MESSAGES/tutorials.po @@ -3290,9 +3290,8 @@ msgstr "" #: ../../tutorials/intro.md:341 msgid "" "In the image above, you can see the steps associated with publishing your" -" package on PyPI and conda-forge. Note that the distribution files that " -"PyPI requires are the [sdist](#python-source-distribution) and [wheel" -"](#python-wheel) files. Once you are ready to make your code publicly " +" package on PyPI and conda-forge. PyPI supports [sdist](#python-source-distribution)" +and [wheel](#python-wheel) files. Once you are ready to make your code publicly " "installable, you can publish it on PyPI. Once your code is on PyPI it is " "straight forward to then publish to conda-forge. You create a recipe " "using the Grayskull package and then you open a pr in the conda-forge " diff --git a/locales/ja/LC_MESSAGES/tutorials.po b/locales/ja/LC_MESSAGES/tutorials.po index 8cd0b7e9..f6577ec2 100644 --- a/locales/ja/LC_MESSAGES/tutorials.po +++ b/locales/ja/LC_MESSAGES/tutorials.po @@ -3685,9 +3685,8 @@ msgstr "" #: ../../tutorials/intro.md:341 msgid "" "In the image above, you can see the steps associated with publishing your" -" package on PyPI and conda-forge. Note that the distribution files that " -"PyPI requires are the [sdist](#python-source-distribution) and [wheel" -"](#python-wheel) files. Once you are ready to make your code publicly " +" package on PyPI and conda-forge. PyPI supports [sdist](#python-source-distribution)" +and [wheel](#python-wheel) files. Once you are ready to make your code publicly " "installable, you can publish it on PyPI. Once your code is on PyPI it is " "straight forward to then publish to conda-forge. You create a recipe " "using the Grayskull package and then you open a pr in the conda-forge " diff --git a/tutorials/intro.md b/tutorials/intro.md index fd62dcaf..2b1d0087 100644 --- a/tutorials/intro.md +++ b/tutorials/intro.md @@ -339,7 +339,7 @@ Then you can create a conda-forge recipe using the [Grayskull](https://github.co Graphic showing the high level packaging workflow. On the left you see a graphic with code, metadata and tests in it. Those items all go into your package. Documentation and data are below that box because they aren't normally published in your packaging wheel distribution. An arrow to the right takes you to a build distribution files box. That box leads you to either publishing to TestPyPI or the real PyPI. From PyPI you can then connect to conda-forge for an automated build that sends distributions from PyPI to conda-forge. In the image above, you can see the steps associated with publishing -your package on PyPI and conda-forge. Note that the distribution files that PyPI requires are the [sdist](#python-source-distribution) and [wheel](#python-wheel) files. Once you are ready to make your code publicly installable, you can publish it on PyPI. Once your code is on PyPI it is straight forward to then publish to conda-forge. You create a recipe using the Grayskull package and then you open a pr in the conda-forge recipe repository. You will learn more about this process in the [conda-forge lesson](/tutorials/publish-conda-forge). +your package on PyPI and conda-forge. PyPI supports [sdist](#python-source-distribution) and [wheel](#python-wheel) files. Once you are ready to make your code publicly installable, you can publish it on PyPI. Once your code is on PyPI it is straight forward to then publish to conda-forge. You create a recipe using the Grayskull package and then you open a pr in the conda-forge recipe repository. You will learn more about this process in the [conda-forge lesson](/tutorials/publish-conda-forge). ::: ## Yay, your package has users! Now what?