@@ -15,14 +15,14 @@ orbs:
1515# Define a job to be invoked later in a workflow.
1616# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
1717jobs :
18- test37 : # This is the name of the job, feel free to change it to better match what you're trying to do!
18+ test39 : # This is the name of the job, feel free to change it to better match what you're trying to do!
1919 # These next lines defines a Docker executors: https://circleci.com/docs/2.0/executor-types/
2020 # You can specify an image from Dockerhub or use one of the convenience images from CircleCI's Developer Hub
2121 # A list of available CircleCI Docker convenience images are available here: https://circleci.com/developer/images/image/cimg/python
2222 # The executor is the environment in which the steps below will be executed - below will use a python 3.6.14 container
2323 # Change the version below to your required version of python
2424 docker :
25- - image : cimg/python:3.7
25+ - image : cimg/python:3.9
2626 working_directory : /tmp/src/phys2denoise
2727 resource_class : medium
2828 # Checkout the code as the first step. This is a dedicated CircleCI step.
4646 command : |
4747 pytest --cov=./phys2denoise
4848 mkdir /tmp/src/coverage
49- mv ./.coverage /tmp/src/coverage/.coverage.py37
49+ mv ./.coverage /tmp/src/coverage/.coverage.py39
5050 - store_artifacts :
5151 path : /tmp/src/coverage
5252 # Persist the specified paths (workspace/echo-output) into the workspace for use in downstream job.
@@ -56,11 +56,11 @@ jobs:
5656 root : /tmp
5757 # Must be relative path from root
5858 paths :
59- - src/coverage/.coverage.py37
59+ - src/coverage/.coverage.py39
6060
61- test310 :
61+ test311 :
6262 docker :
63- - image : cimg/python:3.10
63+ - image : cimg/python:3.11
6464 working_directory : /tmp/src/phys2denoise
6565 resource_class : medium
6666 steps :
@@ -75,17 +75,17 @@ jobs:
7575 command : |
7676 pytest --cov=./phys2denoise
7777 mkdir /tmp/src/coverage
78- mv ./.coverage /tmp/src/coverage/.coverage.py310
78+ mv ./.coverage /tmp/src/coverage/.coverage.py311
7979 - store_artifacts :
8080 path : /tmp/src/coverage
8181 - persist_to_workspace :
8282 root : /tmp
8383 paths :
84- - src/coverage/.coverage.py310
84+ - src/coverage/.coverage.py311
8585
8686 style_check :
8787 docker :
88- - image : cimg/python:3.7
88+ - image : cimg/python:3.9
8989 working_directory : /tmp/src/phys2denoise
9090 resource_class : small
9191 steps :
@@ -105,7 +105,7 @@ jobs:
105105 merge_coverage :
106106 working_directory : /tmp/src/phys2denoise
107107 docker :
108- - image : cimg/python:3.10
108+ - image : cimg/python:3.11
109109 resource_class : small
110110 steps :
111111 - attach_workspace :
@@ -133,13 +133,13 @@ workflows:
133133 # Inside the workflow, you define the jobs you want to run.
134134 jobs :
135135 - style_check
136- - test37 :
136+ - test39 :
137137 requires :
138138 - style_check
139- - test310 :
139+ - test311 :
140140 requires :
141141 - style_check
142142 - merge_coverage :
143143 requires :
144- - test37
145- - test310
144+ - test39
145+ - test311
0 commit comments