File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
build_test :
9
9
docker :
10
- - image : python:3.7-buster
10
+ # Important: Don't change this otherwise we will stop testing the earliest
11
+ # python version we have to support.
12
+ - image : python:3.6-buster
11
13
resource_class : small
12
14
parallelism : 6
13
15
steps :
23
25
- run :
24
26
name : Black Formatting Check # Only validation, without re-formatting
25
27
command : |
26
- poetry run black --check -t py37 .
28
+ poetry run black --check -t py36 .
27
29
- run :
28
30
name : Flake8 Lint Check # Uses setup.cfg for configuration
29
31
command : |
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ nest-asyncio = "^1.5.1"
41
41
Sphinx = " ^4.2.0"
42
42
pydantic = " ^1.8.2"
43
43
isort = " ^5.10.1"
44
+ numpy = " ^1.19.5"
45
+ scipy = " ^1.5.4"
46
+ Shapely = " ^1.8.0"
44
47
45
48
[tool .poetry .dev-dependencies ]
46
49
poetry = " ^1.1.5"
@@ -58,9 +61,7 @@ sphinx-autobuild = "^2021.3.14"
58
61
furo = " ^2021.10.9"
59
62
sphinx-autoapi = " ^1.8.4"
60
63
pytest-xdist = " ^2.5.0"
61
- Shapely = { version = " ^1.8.0" , python = " >=3.7,<3.11" }
62
- scipy = { version = " ^1.7.3" , python = " >=3.7,<3.11" }
63
- numpy = { version = " ^1.21.5" , python = " >=3.7,<3.11" }
64
+
64
65
65
66
[tool .pytest .ini_options ]
66
67
markers = [
You can’t perform that action at this time.
0 commit comments