Skip to content

Commit a880e1e

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

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

src/examples/using-test-job.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: |
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)