Skip to content

Commit a5447b7

Browse files
author
Diego Ardila
committed
Bump python version
1 parent a3b5804 commit a5447b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 2.1
44
jobs:
55
build_test:
66
docker:
7-
- image: python:3.6-slim-buster
7+
- image: python:3.7-slim-buster
88
resource_class: small
99
steps:
1010
- checkout # checkout source code to working directory
@@ -18,7 +18,7 @@ jobs:
1818
- run:
1919
name: Black Formatting Check # Only validation, without re-formatting
2020
command: |
21-
poetry run black --check -t py36 .
21+
poetry run black --check -t py37 .
2222
- run:
2323
name: Flake8 Lint Check # Uses setup.cfg for configuration
2424
command: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ documentation = "https://dashboard.scale.com/nucleus/docs/api"
3232
packages = [{include="nucleus"}]
3333

3434
[tool.poetry.dependencies]
35-
python = "^3.6.2"
35+
python = "^3.7.0"
3636
requests = "^2.25.1"
3737
tqdm = "^4.41.0"
3838
dataclasses = { version = "^0.7", python = "^3.6.1, <3.7" }

0 commit comments

Comments
 (0)