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 77jobs :
88 build_test :
99 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
1113 resource_class : small
1214 parallelism : 6
1315 steps :
2325 - run :
2426 name : Black Formatting Check # Only validation, without re-formatting
2527 command : |
26- poetry run black --check -t py37 .
28+ poetry run black --check -t py36 .
2729 - run :
2830 name : Flake8 Lint Check # Uses setup.cfg for configuration
2931 command : |
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ nest-asyncio = "^1.5.1"
4141Sphinx = " ^4.2.0"
4242pydantic = " ^1.8.2"
4343isort = " ^5.10.1"
44+ numpy = " ^1.19.5"
45+ scipy = " ^1.5.4"
46+ Shapely = " ^1.8.0"
4447
4548[tool .poetry .dev-dependencies ]
4649poetry = " ^1.1.5"
@@ -58,9 +61,7 @@ sphinx-autobuild = "^2021.3.14"
5861furo = " ^2021.10.9"
5962sphinx-autoapi = " ^1.8.4"
6063pytest-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+
6465
6566[tool .pytest .ini_options ]
6667markers = [
You can’t perform that action at this time.
0 commit comments