Skip to content

Commit e9c6e72

Browse files
committed
Let R 4.4.3 be based on python 3.10
because we want to deprecate 3.9 soon
1 parent f01e67b commit e9c6e72

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.circleci/config.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,12 @@ jobs:
163163
parameters:
164164
r-version:
165165
type: string
166+
python-version:
167+
type: string
168+
default: "3.9"
166169
environment:
167170
R_VERSION: << parameters.r-version >>
168-
PYTHON_VERSION: "3.9"
171+
PYTHON_VERSION: << parameters.python-version >>
169172
steps:
170173
- checkout
171174
- docker_login
@@ -277,6 +280,8 @@ python-versions: &python-versions
277280
r-versions: &r-versions
278281
- "4.0.4"
279282
- "4.2.0"
283+
284+
python-310-r-versions: &python310-r-versions
280285
- "4.4.3"
281286

282287
workflows:
@@ -312,6 +317,14 @@ workflows:
312317
r-version: *r-versions
313318
requires:
314319
- Python 3.9
320+
- build-and-push-ir:
321+
name: R << matrix.r-version >>
322+
matrix:
323+
parameters:
324+
r-version: *python310-r-versions
325+
python-version: "3.10"
326+
requires:
327+
- Python 3.10
315328
- build-and-push-ir-with-libs:
316329
name: R with libs << matrix.r-version >>
317330
matrix:

0 commit comments

Comments
 (0)