1
1
[tox]
2
2
envlist =
3
- py{36,37,38, 39}-{local,integ},
3
+ py{39}-{local,integ},
4
4
bandit, doc8, readme, docs,
5
5
{flake8,pylint}{,-tests},
6
6
# prone to false positives
@@ -35,7 +35,7 @@ envlist =
35
35
36
36
37
37
[testenv:generate-pipeline]
38
- basepython = python3
38
+ basepython = python3.9
39
39
skip_install = true
40
40
deps =
41
41
troposphere[policy]
@@ -44,7 +44,7 @@ commands = python .chalice/pipeline.py {posargs}
44
44
45
45
46
46
[testenv:chalice-prep]
47
- basepython = python3.6
47
+ basepython = python3.9
48
48
skip_install = true
49
49
recreate = true
50
50
deps = {[testenv:build]deps}
@@ -59,7 +59,7 @@ commands =
59
59
python {toxinidir}/.chalice/build-requirements.py
60
60
61
61
[testenv:chalice]
62
- basepython = python3.6
62
+ basepython = python3.9
63
63
recreate = true
64
64
deps =
65
65
{[testenv:chalice-prep]deps}
@@ -69,7 +69,7 @@ commands =
69
69
chalice {posargs}
70
70
71
71
[testenv:chalice-deploy]
72
- basepython = python3.6
72
+ basepython = python3.9
73
73
recreate = true
74
74
deps =
75
75
{[testenv:chalice]deps}
@@ -141,17 +141,6 @@ commands =
141
141
{posargs}
142
142
{[testenv:mypy-coverage]commands}
143
143
144
- [testenv:mypy-py2]
145
- basepython = {[testenv:mypy-common]basepython}
146
- deps = {[testenv:mypy-common]deps}
147
- commands =
148
- python -m mypy \
149
- --py2 \
150
- --linecoverage-report build \
151
- src/aws_encryption_sdk_decrypt_oracle/ \
152
- {posargs}
153
- {[testenv:mypy-coverage]commands}
154
-
155
144
# Linters
156
145
[testenv:flake8]
157
146
basepython = python3
@@ -167,7 +156,6 @@ commands =
167
156
app.py \
168
157
setup.py \
169
158
.chalice/pipeline.py \
170
- # doc/conf.py \
171
159
{posargs}
172
160
173
161
[testenv:flake8-tests]
@@ -218,7 +206,6 @@ commands =
218
206
src/aws_encryption_sdk_decrypt_oracle/ \
219
207
setup.py \
220
208
app.py \
221
- # doc/conf.py \
222
209
test/ \
223
210
.chalice/pipeline.py \
224
211
{posargs}
@@ -276,7 +263,7 @@ basepython = python3
276
263
deps =
277
264
sphinx
278
265
doc8
279
- commands = doc8 doc/index.rst README.rst CHANGELOG .rst
266
+ commands = doc8 README.rst
280
267
281
268
[testenv:readme]
282
269
basepython = python3
@@ -319,21 +306,6 @@ commands =
319
306
{[testenv:flake8-tests]commands}
320
307
{[testenv:pylint-tests]commands}
321
308
322
- # Documentation
323
- [testenv:docs]
324
- basepython = python3
325
- deps = -rdoc/requirements.txt
326
- commands =
327
- sphinx-build -E -c doc/ -b html doc/ doc/build/html
328
-
329
- [testenv:serve-docs]
330
- basepython = python3
331
- skip_install = true
332
- changedir = doc/build/html
333
- deps =
334
- commands =
335
- python -m http.server {posargs}
336
-
337
309
# Release tooling
338
310
[testenv:park]
339
311
basepython = python3
@@ -347,11 +319,9 @@ commands = python setup.py park
347
319
basepython = python3
348
320
skip_install = true
349
321
deps =
350
- # {[testenv:docs]deps}
351
322
wheel
352
323
setuptools
353
324
commands =
354
- # {[testenv:docs]commands}
355
325
python setup.py sdist bdist_wheel
356
326
357
327
[testenv:test-release]
0 commit comments