From 50d2cd6652c6bec2faec7557b7cbb5e924dded8c Mon Sep 17 00:00:00 2001 From: Marshall McDonnell Date: Thu, 21 Jan 2021 14:06:51 -0500 Subject: [PATCH 1/3] Add lint-security to tox --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 84ad303..f142a5c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36,py37,py38,py39,lint,coverage +envlist = py36,py37,py38,py39,lint,lint-security,coverage [gh-actions] From 1433b85ef224f08df41bd1626ba89ca2193caa9c Mon Sep 17 00:00:00 2001 From: Marshall McDonnell Date: Thu, 21 Jan 2021 14:07:08 -0500 Subject: [PATCH 2/3] Unpin numpy version in requirements to fix conda packaging --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 250d96c..24ce15a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -numpy==1.19.4 +numpy From d1e9a7c8fa4578eb74d6c69cc16afa67b213caa7 Mon Sep 17 00:00:00 2001 From: Marshall McDonnell Date: Thu, 21 Jan 2021 14:21:26 -0500 Subject: [PATCH 3/3] Drop python 3.9 from ci actions for now, won't upload to anaconda --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 790b15e..c09a0b8 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.6", "3.7", "3.8", "3.9"] + python-version: ["3.6", "3.7", "3.8"] steps: - uses: actions/checkout@v2