From 817d52b7e04282a544cf21f681067dd2478479f2 Mon Sep 17 00:00:00 2001 From: Anton Tetov <anton@tetov.xyz> Date: Tue, 19 Oct 2021 18:07:29 +0200 Subject: [PATCH] allow py 3.7, add mypy for dev install --- environment.yml | 2 +- setup.cfg | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/environment.yml b/environment.yml index 98a803d..b776b14 100644 --- a/environment.yml +++ b/environment.yml @@ -2,5 +2,5 @@ name: abb-egm-examples channels: - conda-forge dependencies: - - python >=3.9, <3.10 + - python >=3.7, <3.10 - protobuf diff --git a/setup.cfg b/setup.cfg index d2f3dc6..7781445 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ version = 0.1.0 [options] packages = abb_egm_client -python_requires = >= 3.9 +python_requires = >= 3.7 install_requires = protobuf @@ -13,6 +13,7 @@ dev = black flake8 isort >= 5.0.0 + mypy [flake8] max-line-length = 88 -- GitLab