From a8d2e17f5e94a005f70ed5851d36f3f4bfd809c0 Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Tue, 10 Dec 2019 05:24:28 +0100 Subject: [PATCH 1/3] Add pypy3 to CI --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 844706d..aaaaa28 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, pypy3] steps: - uses: actions/checkout@v1 From 6bc26fbacb534253a5e871d609c9cf1b95f858fe Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Mon, 4 May 2020 18:42:51 +0200 Subject: [PATCH 2/3] Update setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 048fed2..dae84dc 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ license=about["__license__"], packages=find_packages(), package_data={"data": ["data"],}, + setup_requires=["numpy"], install_requires=[ "latticejson>=0.0.4", "numpy", From 577a7438d1cf51adce6bf4f6df2f733dd59ddc7d Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Mon, 4 May 2020 19:27:49 +0200 Subject: [PATCH 3/3] Revert "Update setup.py" This reverts commit 6bc26fbacb534253a5e871d609c9cf1b95f858fe. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index dae84dc..048fed2 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,6 @@ license=about["__license__"], packages=find_packages(), package_data={"data": ["data"],}, - setup_requires=["numpy"], install_requires=[ "latticejson>=0.0.4", "numpy",