Skip to content

Commit 54dcf2f

Browse files
authored
Merge branch 'main' into patch-2
2 parents b466885 + c97d478 commit 54dcf2f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

source/guides/github-actions-ci-cd-sample/publish-to-test-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@master
12-
- name: Set up Python 3.7
12+
- name: Set up Python 3.9
1313
uses: actions/setup-python@v1
1414
with:
15-
python-version: 3.7
15+
python-version: 3.9
1616
- name: Install pypa/build
1717
run: >-
1818
python -m

source/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Then, add the following under the ``build-n-publish`` section:
9090
:end-before: Install pypa/build
9191

9292
This will download your repository into the CI runner and then
93-
install and activate Python 3.7.
93+
install and activate Python 3.9.
9494

9595
And now we can build dists from source. In this example, we'll
9696
use ``build`` package, assuming that your project has a
@@ -107,7 +107,7 @@ So add this to the steps list:
107107

108108
.. literalinclude:: github-actions-ci-cd-sample/publish-to-test-pypi.yml
109109
:language: yaml
110-
:start-after: version: 3.7
110+
:start-after: version: 3.9
111111
:end-before: Actually publish to PyPI/TestPyPI
112112

113113

0 commit comments

Comments
 (0)