From 782976961366db6197066334c76fb7b442f432b3 Mon Sep 17 00:00:00 2001 From: Nathaniel Saul Date: Sat, 9 Jan 2021 11:20:16 -0800 Subject: [PATCH 1/7] bump version --- cechmate/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cechmate/_version.py b/cechmate/_version.py index 9b36b86..3dc1f76 100644 --- a/cechmate/_version.py +++ b/cechmate/_version.py @@ -1 +1 @@ -__version__ = "0.0.10" +__version__ = "0.1.0" From 7a3f02701ba718b159c77c18a7bd413103b0dbc0 Mon Sep 17 00:00:00 2001 From: Nathaniel Saul Date: Sat, 9 Jan 2021 11:22:05 -0800 Subject: [PATCH 2/7] pin phat version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6436e8e..393afce 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 'scipy', 'numpy', 'matplotlib', - 'phat', + 'phat==0.14.0', 'persim' ], extras_require={ # use `pip install -e ".[testing]"` From de56dbcfe9e75ad53102d9030cdcb596bee4762e Mon Sep 17 00:00:00 2001 From: Nathaniel Saul Date: Sat, 9 Jan 2021 11:23:27 -0800 Subject: [PATCH 3/7] fix pinned version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 393afce..45be9d9 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 'scipy', 'numpy', 'matplotlib', - 'phat==0.14.0', + 'phat==0.15.0', 'persim' ], extras_require={ # use `pip install -e ".[testing]"` From 03e8d656f67d5aad346722ef20347b8d4125cdae Mon Sep 17 00:00:00 2001 From: Nathaniel Saul Date: Sat, 9 Jan 2021 11:25:29 -0800 Subject: [PATCH 4/7] fix version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 45be9d9..202d037 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 'scipy', 'numpy', 'matplotlib', - 'phat==0.15.0', + 'phat==1.5.0', 'persim' ], extras_require={ # use `pip install -e ".[testing]"` From 20fa2b3a4005f169dd11b586a5b7e82fe52c1b57 Mon Sep 17 00:00:00 2001 From: Nathaniel Saul Date: Sat, 9 Jan 2021 11:29:19 -0800 Subject: [PATCH 5/7] strange pinning required for phat --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 202d037..f154946 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 'scipy', 'numpy', 'matplotlib', - 'phat==1.5.0', + 'phat==1.5.0a0', 'persim' ], extras_require={ # use `pip install -e ".[testing]"` From 6a42938f9cc7a24417e9d95de722dd7e27bb7556 Mon Sep 17 00:00:00 2001 From: Nathaniel Saul Date: Sat, 9 Jan 2021 11:34:59 -0800 Subject: [PATCH 6/7] pin pip version for testing --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 74e8ee3..6c6d5e6 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -24,7 +24,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip==19.3.1 pip install flake8 pytest pybind11 pip install -e ".[testing]" - name: Lint with flake8 From 6001dd514a39da6b948a0ecf3539dabba947c8fb Mon Sep 17 00:00:00 2001 From: Nathaniel Saul Date: Sat, 9 Jan 2021 11:35:24 -0800 Subject: [PATCH 7/7] pin pip version for publishing --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index db2bbbf..5da748f 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -19,7 +19,7 @@ jobs: python-version: '3.x' - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip==19.3.1 pip install setuptools wheel twine - name: Build and publish env: