File tree 2 files changed +11
-7
lines changed
2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,11 @@ jobs:
41
41
tutorials :
42
42
type : string
43
43
docker :
44
- - image : cimg/python:3.8
44
+ - image : cimg/python:3.9
45
45
steps :
46
46
- checkout
47
47
- restore_cache :
48
- key : v2-3.8 -dependency-cache-{{ checksum "dev-requirements.txt" }}
48
+ key : v2-3.9 -dependency-cache-{{ checksum "dev-requirements.txt" }}
49
49
- run :
50
50
name : install python dependencies
51
51
command : |
54
54
pip install -r dev-requirements.txt
55
55
pip install -e .
56
56
- save_cache :
57
- key : v2-3.8 -dependency-cache-{{ checksum "dev-requirements.txt" }}
57
+ key : v2-3.9 -dependency-cache-{{ checksum "dev-requirements.txt" }}
58
58
paths :
59
59
- " venv"
60
60
- run :
@@ -78,11 +78,11 @@ jobs:
78
78
file : " coverage.xml"
79
79
deploy :
80
80
docker :
81
- - image : cimg/python:3.8
81
+ - image : cimg/python:3.9
82
82
steps :
83
83
- checkout
84
84
- restore_cache :
85
- key : v2-3.8 -dependency-cache-{{ checksum "dev-requirements.txt" }}
85
+ key : v2-3.9 -dependency-cache-{{ checksum "dev-requirements.txt" }}
86
86
- run :
87
87
name : install python dependencies
88
88
command : |
91
91
pip install -r dev-requirements.txt
92
92
pip install -e .
93
93
- save_cache :
94
- key : v2-3.8 -dependency-cache-{{ checksum "dev-requirements.txt" }}
94
+ key : v2-3.9 -dependency-cache-{{ checksum "dev-requirements.txt" }}
95
95
paths :
96
96
- " venv"
97
97
- run :
@@ -127,14 +127,17 @@ workflows:
127
127
- build :
128
128
name : " v3.8"
129
129
version : " 3.8"
130
+ - build :
131
+ name : " v3.9"
132
+ version : " 3.9"
130
133
- test-module :
131
134
name : " proglearn"
132
135
module : " proglearn"
133
136
benchmarks : " benchmarks/"
134
137
experiments : " docs/experiments/"
135
138
tutorials : " docs/tutorials/"
136
139
requires :
137
- - " v3.8 "
140
+ - " v3.9 "
138
141
- deploy :
139
142
filters :
140
143
tags :
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ def run(self):
52
52
"Programming Language :: Python :: 3.6" ,
53
53
"Programming Language :: Python :: 3.7" ,
54
54
"Programming Language :: Python :: 3.8" ,
55
+ "Programming Language :: Python :: 3.9" ,
55
56
],
56
57
install_requires = REQUIREMENTS ,
57
58
packages = find_packages (exclude = ["tests" , "tests.*" , "tests/*" ]),
You can’t perform that action at this time.
0 commit comments