Skip to content

Commit 15c4d31

Browse files
committed
Update uv Python from v3.9 to v3.14
1 parent 8ac5e53 commit 15c4d31

File tree

5 files changed

+21
-11
lines changed

5 files changed

+21
-11
lines changed

src/examples/using-test-job.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
description: |
22
An example of running a pipenv based project with pytest. And then using twine to publish to pypi.
3-
The project using these args would have pytest as a dev dependecy in its Pipfile.
3+
The project using these args would have pytest as a dev dependency in its Pipfile.
44
The CircleCI project settings would have the environment variables for twine auth.
55
usage:
66
version: 2.1
77
orbs:
8-
python: circleci/python@3.0.0
8+
python: circleci/python@3.3.0
99
workflows:
1010
main:
1111
jobs:
@@ -17,7 +17,9 @@ usage:
1717

1818
jobs:
1919
publish:
20-
executor: python/default
20+
executor:
21+
name: python/default
22+
tag: "3.14"
2123
steps:
2224
- checkout
2325
- python/dist

src/examples/work-with-pip.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ description: |
33
usage:
44
version: 2.1
55
orbs:
6-
python: circleci/python@3.0.0
6+
python: circleci/python@3.3.0
77
workflows:
88
main:
99
jobs:
1010
- build
1111
jobs:
1212
build:
13-
executor: python/default
13+
executor:
14+
name: python/default
15+
tag: "3.14"
1416
steps:
1517
- checkout
1618
# Install requirements.txt

src/examples/work-with-pipenv.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ description: |
33
usage:
44
version: 2.1
55
orbs:
6-
python: circleci/python@3.0.0
6+
python: circleci/python@3.3.0
77
workflows:
88
main:
99
jobs:
1010
- build
1111
jobs:
1212
build:
13-
executor: python/default
13+
executor:
14+
name: python/default
15+
tag: "3.14"
1416
steps:
1517
- checkout
1618
- python/install-packages:

src/examples/work-with-poetry.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ description: |
33
usage:
44
version: 2.1
55
orbs:
6-
python: circleci/python@3.0.0
6+
python: circleci/python@3.3.0
77
workflows:
88
main:
99
jobs:
1010
- build
1111
jobs:
1212
build:
13-
executor: python/default
13+
executor:
14+
name: python/default
15+
tag: "3.14"
1416
steps:
1517
- checkout
1618
- python/install-packages:

src/examples/work-with-uv.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ description: |
33
usage:
44
version: 2.1
55
orbs:
6-
python: circleci/python@3.0.0
6+
python: circleci/python@3.3.0
77
workflows:
88
main:
99
jobs:
1010
- build
1111
jobs:
1212
build:
13-
executor: python/default
13+
executor:
14+
name: python/default
15+
tag: "3.14"
1416
steps:
1517
- checkout
1618
- python/install-packages:

0 commit comments

Comments
 (0)