From 2019acb8741413136d1edd0165c880ddd3ce383c Mon Sep 17 00:00:00 2001 From: Sam Andrello Date: Mon, 31 Jul 2023 12:42:35 -0400 Subject: [PATCH 1/3] Updated conda build config to include new python versions --- conda-recipe/conda_build_config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conda-recipe/conda_build_config.yaml b/conda-recipe/conda_build_config.yaml index 3b9cb70e..172e7879 100644 --- a/conda-recipe/conda_build_config.yaml +++ b/conda-recipe/conda_build_config.yaml @@ -1,4 +1,7 @@ python: + - 3.10 + - 3.9 + - 3.8 - 3.7 - 3.6 - 3.5 From 9a234e0637609dde4bf0b6e0e5146f41af53b149 Mon Sep 17 00:00:00 2001 From: Sam Andrello Date: Tue, 1 Aug 2023 11:36:07 -0400 Subject: [PATCH 2/3] Bump project version to 1.4.1, remove Py 3.5, 3.6 support --- .github/workflows/build.yaml | 4 ++-- conda-recipe/conda_build_config.yaml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1d3ffc61..c536c27e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -48,8 +48,8 @@ jobs: replacesArtifacts: true token: ${{ secrets.GITHUB_TOKEN }} artifacts: ${{ github.workspace }}/dist/*.whl - tag: 1.4.0 - body: This is an alpha build of the pdffit2 library (1.4.0) + tag: 1.4.1 + body: This is an alpha build of the pdffit2 library (1.4.1) # This step will upload tagged commits to pypi. # The pypi token must be added to GH secrets diff --git a/conda-recipe/conda_build_config.yaml b/conda-recipe/conda_build_config.yaml index 172e7879..f4b22dcf 100644 --- a/conda-recipe/conda_build_config.yaml +++ b/conda-recipe/conda_build_config.yaml @@ -3,8 +3,6 @@ python: - 3.9 - 3.8 - 3.7 - - 3.6 - - 3.5 - 2.7 gsl: From 38659f52b65fcadf4710c05d26e7785aab6c21ba Mon Sep 17 00:00:00 2001 From: Sam Andrello Date: Tue, 1 Aug 2023 12:50:21 -0400 Subject: [PATCH 3/3] Fix Error: 403 "Resource not accessible by integration" --- .github/workflows/build.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c536c27e..573a4274 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,6 +1,12 @@ name: build and upload -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: + branches: + - main jobs: build: