diff --git a/src/examples/using-test-job.yml b/src/examples/using-test-job.yml index ea8063e..c76c6e2 100644 --- a/src/examples/using-test-job.yml +++ b/src/examples/using-test-job.yml @@ -1,11 +1,11 @@ description: | An example of running a pipenv based project with pytest. And then using twine to publish to pypi. - The project using these args would have pytest as a dev dependecy in its Pipfile. + The project using these args would have pytest as a dev dependency in its Pipfile. The CircleCI project settings would have the environment variables for twine auth. usage: version: 2.1 orbs: - python: circleci/python@3.0.0 + python: circleci/python@3.3.0 workflows: main: jobs: @@ -17,7 +17,9 @@ usage: jobs: publish: - executor: python/default + executor: + name: python/default + tag: "3.14" steps: - checkout - python/dist diff --git a/src/examples/work-with-pip.yml b/src/examples/work-with-pip.yml index f7dedc5..b1a1816 100644 --- a/src/examples/work-with-pip.yml +++ b/src/examples/work-with-pip.yml @@ -3,14 +3,16 @@ description: | usage: version: 2.1 orbs: - python: circleci/python@3.0.0 + python: circleci/python@3.3.0 workflows: main: jobs: - build jobs: build: - executor: python/default + executor: + name: python/default + tag: "3.14" steps: - checkout # Install requirements.txt diff --git a/src/examples/work-with-pipenv.yml b/src/examples/work-with-pipenv.yml index 4bb0d4f..79c5149 100644 --- a/src/examples/work-with-pipenv.yml +++ b/src/examples/work-with-pipenv.yml @@ -3,14 +3,16 @@ description: | usage: version: 2.1 orbs: - python: circleci/python@3.0.0 + python: circleci/python@3.3.0 workflows: main: jobs: - build jobs: build: - executor: python/default + executor: + name: python/default + tag: "3.14" steps: - checkout - python/install-packages: diff --git a/src/examples/work-with-poetry.yml b/src/examples/work-with-poetry.yml index 1e982ad..5480e95 100644 --- a/src/examples/work-with-poetry.yml +++ b/src/examples/work-with-poetry.yml @@ -3,14 +3,16 @@ description: | usage: version: 2.1 orbs: - python: circleci/python@3.0.0 + python: circleci/python@3.3.0 workflows: main: jobs: - build jobs: build: - executor: python/default + executor: + name: python/default + tag: "3.14" steps: - checkout - python/install-packages: diff --git a/src/examples/work-with-uv.yml b/src/examples/work-with-uv.yml index d3857db..55bcd27 100644 --- a/src/examples/work-with-uv.yml +++ b/src/examples/work-with-uv.yml @@ -3,14 +3,16 @@ description: | usage: version: 2.1 orbs: - python: circleci/python@3.0.0 + python: circleci/python@3.3.0 workflows: main: jobs: - build jobs: build: - executor: python/default + executor: + name: python/default + tag: "3.14" steps: - checkout - python/install-packages: