From 8b377f2eb63ef154c94d9ca01e39e2b3224650a6 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:13:54 -0400 Subject: [PATCH 01/39] DOC: udpate zenodo --- .zenodo.json | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 6d54b11f..433d6dbf 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,4 +1,17 @@ { + "keywords": [ + "pysat", + "ionosphere", + "atmosphere", + "thermosphere", + "magnetosphere", + "heliosphere", + "observations", + "models", + "space", + "satellites", + "analysis" + ], "creators": [ { "affiliation": "Goddard Space Flight Center", @@ -6,7 +19,7 @@ "orcid": "0000-0001-8321-6074" }, { - "affiliation": "The University of Texas at Dallas", + "affiliation": "Cosmic Studio", "name": "Stoneback, Russell", "orcid": "0000-0001-7216-4336" }, @@ -25,6 +38,11 @@ "name": "Navarro, Luis", "orcid": "0000-0002-6362-6575" }, + { + "affiliation": "NASA Postdoctoral Program, Goddard Space Flight Center", + "name": "Esman, Teresa", + "orcid": "0000-0003-0382-6281" + }, { "affiliation": "Predictive Science", "name": "Pembroke, Asher" @@ -32,11 +50,6 @@ { "name": "Spence, Carey", "orcid": "0000-0001-8340-5625" - }, - { - "affiliation": "NASA Postdoctoral Program, Goddard Space Flight Center", - "name": "Esman, Teresa", - "orcid": "0000-0003-0382-6281" } ] } From 0793fa54733428f7d34239b569fd30ff8f680f60 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:14:12 -0400 Subject: [PATCH 02/39] MAINT: NEP29 apr 2024 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aeccb359..0d817550 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,12 +11,12 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.10", "3.11"] + python-version: ["3.11", "3.12"] numpy_ver: ["latest"] test_config: ["latest"] include: - - python-version: "3.9" - numpy_ver: "1.21" + - python-version: "3.10" + numpy_ver: "1.23" os: ubuntu-latest test_config: "NEP29" - python-version: "3.6.8" From a7d3d355fd3ae90042622a2e7b1dae5961438507 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:15:44 -0400 Subject: [PATCH 03/39] DOC: update supported versions --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2befd374..9419a769 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,9 +22,9 @@ classifiers = [ "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: POSIX :: Linux", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows" From e968fec92a7a16953b68df6ac01b5f92e0556549 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:16:57 -0400 Subject: [PATCH 04/39] DOC: update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d7abf91..da0dbe7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). * Documentation * Added example of how to export data for archival * Updated documentation refs + * Add keywords to zenodo * Deprecations * Deprecated '' tag for de2_vefi module, support moved to de2_vefimagb * Maintenance @@ -35,6 +36,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). * Use standard clean routine for C/NOFS VEFI mag data * Added version cap for sphinx_rtd_theme * Include standard tests for ICON IVM-B + * Update NEP29 standards for Apr 2024 ## [0.0.5] - 2023-06-27 * New Instruments From b3ce91f6a6ae2c021ea197968c675a500b5600d4 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Tue, 9 Apr 2024 15:41:09 -0400 Subject: [PATCH 05/39] BUG: no new tests for ssusi --- pysatNASA/instruments/dmsp_ssusi.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pysatNASA/instruments/dmsp_ssusi.py b/pysatNASA/instruments/dmsp_ssusi.py index 0b4a892c..a23a3f8a 100644 --- a/pysatNASA/instruments/dmsp_ssusi.py +++ b/pysatNASA/instruments/dmsp_ssusi.py @@ -95,6 +95,9 @@ # Use standard init routine init = functools.partial(mm_nasa.init, module=mm_dmsp, name=name) +# TODO(#218, #222): Remove when compliant with multi-day load tests +_new_tests = {inst_id: {tag: False for tag in tags.keys()} + for inst_id in inst_ids.keys()} def clean(self): From 379c4e3e0e021311208b410cd94422974dd3f3d7 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Thu, 11 Apr 2024 13:59:23 -0400 Subject: [PATCH 06/39] BUG: comment out buggy tests --- pysatNASA/instruments/dmsp_ssusi.py | 9 +++++---- pysatNASA/instruments/timed_guvi.py | 7 ++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pysatNASA/instruments/dmsp_ssusi.py b/pysatNASA/instruments/dmsp_ssusi.py index a23a3f8a..f5c0ba0b 100644 --- a/pysatNASA/instruments/dmsp_ssusi.py +++ b/pysatNASA/instruments/dmsp_ssusi.py @@ -84,10 +84,11 @@ _test_dates = {inst_id: {tag: dt.datetime(2015, 1, 1) for tag in tags.keys()} for inst_id in inst_ids.keys()} -_clean_warn = {inst_id: {tag: mm_nasa.clean_warnings - for tag in inst_ids[inst_id] - if tag not in ['sdr-disk', 'sdr2-disk']} - for inst_id in inst_ids.keys()} +# TODO(pysat#1196): Un-comment when pysat bug is fixed and released +# _clean_warn = {inst_id: {tag: mm_nasa.clean_warnings +# for tag in inst_ids[inst_id] +# if tag not in ['sdr-disk', 'sdr2-disk']} +# for inst_id in inst_ids.keys()} # ---------------------------------------------------------------------------- # Instrument methods diff --git a/pysatNASA/instruments/timed_guvi.py b/pysatNASA/instruments/timed_guvi.py index 6087ce6e..06d81faf 100644 --- a/pysatNASA/instruments/timed_guvi.py +++ b/pysatNASA/instruments/timed_guvi.py @@ -97,9 +97,10 @@ for iid in ['high_res', 'low_res']} # TODO(#218): Remove when compliant with multi-day load tests _new_tests = {'high_res': {tag: False for tag in inst_ids['high_res']}} -_clean_warn = {inst_id: {tag: mm_nasa.clean_warnings - for tag in inst_ids[inst_id] if tag != 'sdr-imaging'} - for inst_id in inst_ids.keys()} +# TODO(pysat#1196): Un-comment when pysat bug is fixed and released +# _clean_warn = {inst_id: {tag: mm_nasa.clean_warnings +# for tag in inst_ids[inst_id] if tag != 'sdr-imaging'} +# for inst_id in inst_ids.keys()} # ---------------------------------------------------------------------------- # Instrument methods From 8ed391b3ac91bbea6b8be4457f420dfbee0a2805 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 15 Apr 2024 12:33:30 -0400 Subject: [PATCH 07/39] BUG: turn off new tests for ICON FUV --- pysatNASA/instruments/icon_fuv.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pysatNASA/instruments/icon_fuv.py b/pysatNASA/instruments/icon_fuv.py index 94c283fb..c9b5625e 100644 --- a/pysatNASA/instruments/icon_fuv.py +++ b/pysatNASA/instruments/icon_fuv.py @@ -70,6 +70,9 @@ _clean_warn = {inst_id: {tag: mm_icon.fuv_clean_warnings for tag in inst_ids[inst_id]} for inst_id in inst_ids.keys()} +# TODO(#218, #222): Remove when compliant with multi-day load tests +_new_tests = {inst_id: {tag: False for tag in tags.keys()} + for inst_id in inst_ids.keys()} # ---------------------------------------------------------------------------- # Instrument methods From 6fb8dfaad78a60888d3a794acfd2a25d1baf7121 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Thu, 2 May 2024 15:30:53 -0400 Subject: [PATCH 08/39] BUG: remove icon clean tests --- pysatNASA/instruments/icon_fuv.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pysatNASA/instruments/icon_fuv.py b/pysatNASA/instruments/icon_fuv.py index c9b5625e..f51ec43a 100644 --- a/pysatNASA/instruments/icon_fuv.py +++ b/pysatNASA/instruments/icon_fuv.py @@ -67,9 +67,6 @@ _test_dates = {'': {kk: dt.datetime(2020, 1, 1) for kk in tags.keys()}} _test_load_opt = {'': {kk: {'keep_original_names': True} for kk in tags.keys()}} -_clean_warn = {inst_id: {tag: mm_icon.fuv_clean_warnings - for tag in inst_ids[inst_id]} - for inst_id in inst_ids.keys()} # TODO(#218, #222): Remove when compliant with multi-day load tests _new_tests = {inst_id: {tag: False for tag in tags.keys()} for inst_id in inst_ids.keys()} From bb65a0b748544645c8e51126f55d27e5c96ff115 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 6 May 2024 10:31:06 -0400 Subject: [PATCH 09/39] BUG: manual install of git --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0d817550..b01ff327 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,6 +44,11 @@ jobs: pip install "cdflib<1.0" pip install -r requirements.txt pip install -r test_requirements.txt + cd .. + git clone https://github.com/pysat/pysat.git + cd pysat + pip install . + cd ../pysatNASA pip install . - name: Install NEP29 dependencies From 458f4264897446c1fd622c06342674bcb7ab2b76 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 6 May 2024 14:28:29 -0400 Subject: [PATCH 10/39] BUG: git branch --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b01ff327..1d6791f4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,6 +47,7 @@ jobs: cd .. git clone https://github.com/pysat/pysat.git cd pysat + git checkout pip_install_rc pip install . cd ../pysatNASA pip install . From b7b404c00f5df420bf54280d19993e592b167fe7 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 6 May 2024 14:31:47 -0400 Subject: [PATCH 11/39] BUG: spelling --- .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 1d6791f4..f0d79a1f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,7 +47,7 @@ jobs: cd .. git clone https://github.com/pysat/pysat.git cd pysat - git checkout pip_install_rc + git checkout pip_rc_install pip install . cd ../pysatNASA pip install . From b198dea59db1896ab528049163a0161d6155fd6c Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 6 May 2024 14:50:09 -0400 Subject: [PATCH 12/39] BUG: use python setup --- .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 f0d79a1f..ecbd2573 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,7 @@ jobs: git clone https://github.com/pysat/pysat.git cd pysat git checkout pip_rc_install - pip install . + python setup.py install cd ../pysatNASA pip install . From 9c5032ea376c7bea457f089e0b164d5a6285107a Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 6 May 2024 15:16:23 -0400 Subject: [PATCH 13/39] BUG: hdf --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ecbd2573..81ecf1f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,6 +40,7 @@ jobs: - name: Install Operational dependencies if: ${{ matrix.test_config == 'Ops'}} run: | + sudo apt-get install libhdf5-serial-dev netcdf-bin libnetcdf-dev pip install --no-cache-dir numpy==${{ matrix.numpy_ver }} pip install "cdflib<1.0" pip install -r requirements.txt From 58af87430d8a5aab0e920703458f226d3874b73f Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 6 May 2024 15:28:19 -0400 Subject: [PATCH 14/39] BUG: develop --- .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 81ecf1f1..91d69006 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,7 +49,7 @@ jobs: git clone https://github.com/pysat/pysat.git cd pysat git checkout pip_rc_install - python setup.py install + python setup.py develop cd ../pysatNASA pip install . From adae8e9b0acc59b4050c919523f2fc2950096101 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Fri, 14 Jun 2024 12:24:31 -0400 Subject: [PATCH 15/39] Update main.yml --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 91d69006..9b658ac9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -77,6 +77,7 @@ jobs: - name: Test with pytest run: pytest + continue-on-error: true - name: Publish results to coveralls env: From 27cb5387d5c7a8413518d72e1ca0a09f119d0bc4 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Fri, 14 Jun 2024 14:36:31 -0400 Subject: [PATCH 16/39] Update main.yml --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9b658ac9..ee70923f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,6 +68,7 @@ jobs: run: | mkdir pysatData python -c "import pysat; pysat.params['data_dirs'] = 'pysatData'" + continue-on-error: true - name: Test PEP8 compliance run: flake8 . --count --select=D,E,F,H,W --show-source --statistics From d4bfcc26823f6fe4c45694dd3a5ee1c74b4cddc3 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Fri, 14 Jun 2024 14:56:55 -0400 Subject: [PATCH 17/39] BUG: always run finish --- .github/workflows/main.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee70923f..bf1715de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,6 @@ jobs: run: | mkdir pysatData python -c "import pysat; pysat.params['data_dirs'] = 'pysatData'" - continue-on-error: true - name: Test PEP8 compliance run: flake8 . --count --select=D,E,F,H,W --show-source --statistics @@ -78,7 +77,6 @@ jobs: - name: Test with pytest run: pytest - continue-on-error: true - name: Publish results to coveralls env: @@ -88,7 +86,6 @@ jobs: finish: name: Finish Coverage Analysis - needs: build runs-on: ubuntu-latest steps: - name: Coveralls Finished From ea02b89bbd104e5cfb1e60cc43181d8ec717390d Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Fri, 14 Jun 2024 14:59:52 -0400 Subject: [PATCH 18/39] BUG: GA syntax --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bf1715de..c46584af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -86,6 +86,8 @@ jobs: finish: name: Finish Coverage Analysis + needs: build + if: always() runs-on: ubuntu-latest steps: - name: Coveralls Finished From c49a8796cf6375c5faea3dcd49138bce95b94dee Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Fri, 14 Jun 2024 16:24:21 -0400 Subject: [PATCH 19/39] BUG: turn off new tests for maven sep --- pysatNASA/instruments/maven_sep.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pysatNASA/instruments/maven_sep.py b/pysatNASA/instruments/maven_sep.py index b1fe80b2..6ebe120b 100644 --- a/pysatNASA/instruments/maven_sep.py +++ b/pysatNASA/instruments/maven_sep.py @@ -51,6 +51,9 @@ # Instrument test attributes _test_dates = {id: {'': dt.datetime(2020, 1, 1)} for id in inst_ids.keys()} +# TODO(#218, #222): Remove when compliant with multi-day load tests +_new_tests = {inst_id: {tag: False for tag in tags.keys()} + for inst_id in inst_ids.keys()} # ---------------------------------------------------------------------------- # Instrument methods From a53a4691f248a6871e3a5f049808ca727cd194a8 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Mon, 17 Jun 2024 11:21:41 -0400 Subject: [PATCH 20/39] Try coveralls app --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c46584af..4b4bb584 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -78,11 +78,11 @@ jobs: - name: Test with pytest run: pytest - - name: Publish results to coveralls - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COVERALLS_PARALLEL: true - run: coveralls --rcfile=pyproject.toml --service=github + - name: Coveralls Parallel + uses: coverallsapp/github-action@v2 + with: + flag-name: run-${{ join(matrix.*, '-') }} + parallel: true finish: name: Finish Coverage Analysis @@ -91,8 +91,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Coveralls Finished + uses: coverallsapp/github-action@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - pip install --upgrade coveralls - coveralls --service=github --finish + with: + parallel-finished: true From e1be3b60746bf4c4fb54ad68e9ef11aa8d7a8acf Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 09:42:08 -0400 Subject: [PATCH 21/39] BUG: switch to coveralls app Switch to coveralls app from coveralls action. --- .github/workflows/main.yml | 44 ++++++++++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4b4bb584..42c06db7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -78,21 +78,43 @@ jobs: - name: Test with pytest run: pytest - - name: Coveralls Parallel - uses: coverallsapp/github-action@v2 - with: - flag-name: run-${{ join(matrix.*, '-') }} - parallel: true + - name: Coveralls Parallel for ${{ matrix.os }} + if: startsWith(matrix.os, 'ubuntu') + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_PARALLEL: true + run: | + curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz + ./coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + + - name: Coveralls Parallel for ${{ matrix.os }} + if: startsWith(matrix.os, 'windows') + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_PARALLEL: true + run: | + curl -L https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe -o coveralls.exe + ./coveralls.exe report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + + - name: Coveralls Parallel for ${{ matrix.os }} + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_PARALLEL: true + run: | + brew tap coverallsapp/coveralls --quiet + brew install coveralls --quiet + coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis needs: build if: always() - runs-on: ubuntu-latest + runs-on: "ubuntu-latest" steps: - name: Coveralls Finished - uses: coverallsapp/github-action@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - parallel-finished: true + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_PARALLEL: true + run: | + curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz + ./coveralls done --build-number ${{ github.run_number }} From 8c29804cd4f810bf3142904891d08b3749fd372d Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 09:44:37 -0400 Subject: [PATCH 22/39] BUG: fix yaml syntax Attempt to fix yaml syntax. --- .github/workflows/main.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 42c06db7..f9072fb6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,13 +108,12 @@ jobs: finish: name: Finish Coverage Analysis needs: build - if: always() runs-on: "ubuntu-latest" + if: always() steps: - - name: Coveralls Finished - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - COVERALLS_PARALLEL: true - run: | - curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz - ./coveralls done --build-number ${{ github.run_number }} + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_PARALLEL: true + run: | + curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz + ./coveralls done --build-number ${{ github.run_number }} From 519f2676517abdefefd3602b43456a82dac1ba61 Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 09:45:35 -0400 Subject: [PATCH 23/39] BUG: more yaml fixes Another attempt to fix yaml syntax. --- .github/workflows/main.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f9072fb6..77a20272 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -110,10 +110,9 @@ jobs: needs: build runs-on: "ubuntu-latest" if: always() - steps: - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - COVERALLS_PARALLEL: true - run: | - curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz - ./coveralls done --build-number ${{ github.run_number }} + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_PARALLEL: true + run: | + curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz + ./coveralls done --build-number ${{ github.run_number }} From 2012f631474a35f459c8ca7ba073744ad6700ced Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 09:48:20 -0400 Subject: [PATCH 24/39] BUG: re-added steps Re-added `steps` to yaml. --- .github/workflows/main.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 77a20272..916aa0e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,11 +108,13 @@ jobs: finish: name: Finish Coverage Analysis needs: build - runs-on: "ubuntu-latest" if: always() - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - COVERALLS_PARALLEL: true - run: | - curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz - ./coveralls done --build-number ${{ github.run_number }} + runs-on: "ubuntu-latest" + steps: + - name: Coveralls Finish + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_PARALLEL: true + run: | + curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz + ./coveralls done --build-number ${{ github.run_number }} From 4604d6060e71153d2e0f967484795525b664fa25 Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 09:51:20 -0400 Subject: [PATCH 25/39] BUG: added if to yaml Added a missing if statement to the yaml and fixed some of the step names. --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 916aa0e6..9c326cc0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -78,7 +78,7 @@ jobs: - name: Test with pytest run: pytest - - name: Coveralls Parallel for ${{ matrix.os }} + - name: Coveralls Parallel (Ubuntu) if: startsWith(matrix.os, 'ubuntu') env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} @@ -87,7 +87,7 @@ jobs: curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz ./coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} - - name: Coveralls Parallel for ${{ matrix.os }} + - name: Coveralls Parallel (Windows) if: startsWith(matrix.os, 'windows') env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} @@ -96,7 +96,8 @@ jobs: curl -L https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe -o coveralls.exe ./coveralls.exe report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} - - name: Coveralls Parallel for ${{ matrix.os }} + - name: Coveralls Parallel (MacOS) + if: startsWith(matrix.os, 'macos') env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_PARALLEL: true From 5bdc4b558f27af02b167a71f14e16477a9af31aa Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 10:55:11 -0400 Subject: [PATCH 26/39] BUG: fixed secret name Fixed the name of the GitHub secret. --- .github/workflows/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c326cc0..cf5c409e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -81,30 +81,30 @@ jobs: - name: Coveralls Parallel (Ubuntu) if: startsWith(matrix.os, 'ubuntu') env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_PARALLEL: true run: | curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz - ./coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + ./coveralls report --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} - name: Coveralls Parallel (Windows) if: startsWith(matrix.os, 'windows') env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_PARALLEL: true run: | curl -L https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe -o coveralls.exe - ./coveralls.exe report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + ./coveralls.exe report --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} - name: Coveralls Parallel (MacOS) if: startsWith(matrix.os, 'macos') env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_PARALLEL: true run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + coveralls report --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis @@ -114,7 +114,7 @@ jobs: steps: - name: Coveralls Finish env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_PARALLEL: true run: | curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz From b0f6baf0affa19cd412500a346a251f7984956f1 Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 12:18:59 -0400 Subject: [PATCH 27/39] BUG: specify coverage file Specify the coverage file in the macOS call. --- .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 cf5c409e..96069fc5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,7 +104,7 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - coveralls report --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} + coveralls report -f .coverage --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis From ed9ddd7c12c854c9059e697588c02bf458f02cb9 Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 15:40:21 -0400 Subject: [PATCH 28/39] BUG: added debug line Coveralls app isn't working on mac, no idea why. Checking that coverage file exists. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 96069fc5..9c4caf22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,6 +104,7 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet + ls -lh .coverage coveralls report -f .coverage --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} finish: From 86981a6c19365fe1ec8a8c2796192bca530748b0 Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 20 Jun 2024 17:20:40 -0400 Subject: [PATCH 29/39] BUG: use coveralls repo token Use the Coveralls Repository Token, which I just added to the GitHub repository. --- .github/workflows/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c4caf22..3f1f49c9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -81,31 +81,31 @@ jobs: - name: Coveralls Parallel (Ubuntu) if: startsWith(matrix.os, 'ubuntu') env: - COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_PARALLEL: true run: | curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz - ./coveralls report --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} + ./coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} - name: Coveralls Parallel (Windows) if: startsWith(matrix.os, 'windows') env: - COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_PARALLEL: true run: | curl -L https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe -o coveralls.exe - ./coveralls.exe report --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} + ./coveralls.exe report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} - name: Coveralls Parallel (MacOS) if: startsWith(matrix.os, 'macos') env: - COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_PARALLEL: true run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet ls -lh .coverage - coveralls report -f .coverage --parallel --repo-token=${{ secrets.GITHUB_TOKEN }} --build-number ${{ github.run_number }} + coveralls report -f .coverage --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis @@ -115,7 +115,7 @@ jobs: steps: - name: Coveralls Finish env: - COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_PARALLEL: true run: | curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz From 8277eba1b5a67bd33e31bbcfaf7732902a4c9b49 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Thu, 20 Jun 2024 23:36:36 -0400 Subject: [PATCH 30/39] BUG: specify format Try specifying the format for the MacOS coverage call. --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3f1f49c9..5050004c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,8 +104,7 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - ls -lh .coverage - coveralls report -f .coverage --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + coveralls report -f .coverage --format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis From e35b977f573bc18642fe25afb8396dc1a96c1029 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 21 Jun 2024 09:34:42 -0400 Subject: [PATCH 31/39] BUG: remove "extra" options Try removing as many options as possible. --- .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 5050004c..0094e560 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,7 +104,7 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - coveralls report -f .coverage --format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} finish: name: Finish Coverage Analysis From a1a6baa1b6c4c8c24f6f3d550bd84af2eca98639 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 21 Jun 2024 10:22:51 -0400 Subject: [PATCH 32/39] Revert "BUG: remove "extra" options" This reverts commit e35b977f573bc18642fe25afb8396dc1a96c1029. --- .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 0094e560..5050004c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,7 +104,7 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - coveralls report --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} + coveralls report -f .coverage --format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis From ca2fe8ab951744efc25fd5a8fb40f5998e4ac5d0 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 21 Jun 2024 10:23:56 -0400 Subject: [PATCH 33/39] BUG: add verbose mode Put coveralls in verbose mode in preparation for help call. --- .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 5050004c..ce2904cf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,7 +104,7 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - coveralls report -f .coverage --format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + coveralls report -f .coverage --verbose --format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis From 8220845bd61ca15222314bdb8d30a43cf089ccb3 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 21 Jun 2024 10:26:49 -0400 Subject: [PATCH 34/39] BUG: specify xml output Specify coverage xml output. --- .github/workflows/main.yml | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce2904cf..112c02c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,7 +104,9 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - coveralls report -f .coverage --verbose --format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + ls -lh .coverage + ls -lh cov.xml + coveralls report -f cov.xml --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis diff --git a/pyproject.toml b/pyproject.toml index 9419a769..686c8ac5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,7 +78,7 @@ Source = "https://github.com/pysat/pysatNASA" omit = ["*/instruments/templates/"] [tool.pytest.ini_options] -addopts = "--cov=pysatNASA" +addopts = "--cov=pysatNASA --cov-report xml" markers = [ "all_inst", "download", From 0abe87c526f6aa46e7aca52715d9f5bbc454e923 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 21 Jun 2024 10:28:04 -0400 Subject: [PATCH 35/39] BUG: remove tabs from yaml Remove the tabs from the yaml. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 112c02c0..c014a45c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -104,8 +104,8 @@ jobs: run: | brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet - ls -lh .coverage - ls -lh cov.xml + ls -lh .coverage + ls -lh cov.xml coveralls report -f cov.xml --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: From 1d4c87b5c360ba62e708facb46d4ff91def583c2 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 21 Jun 2024 11:43:50 -0400 Subject: [PATCH 36/39] BUG: update xml Fix the name of the xml to reflect reality instead of the docs. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c014a45c..db3998be 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -105,8 +105,8 @@ jobs: brew tap coverallsapp/coveralls --quiet brew install coveralls --quiet ls -lh .coverage - ls -lh cov.xml - coveralls report -f cov.xml --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + ls -lh coverage.xml + coveralls report -f coverage.xml --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis From 090e4e1d08dd43e6af785da82277e5486cb702eb Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Mon, 1 Jul 2024 17:23:00 -0400 Subject: [PATCH 37/39] BUG: made coveralls update Made changes suggested by James from Coveralls. --- .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 db3998be..092ff980 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -106,7 +106,7 @@ jobs: brew install coveralls --quiet ls -lh .coverage ls -lh coverage.xml - coveralls report -f coverage.xml --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + coveralls report coverage.xml --format=cobertura --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} finish: name: Finish Coverage Analysis From 4086f8b6c46ea9bb4ae9dd02b3fa92c75cbbb2b5 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Mon, 1 Jul 2024 18:18:33 -0400 Subject: [PATCH 38/39] BUG: added debug Added a debug statement, as suggested for better feedback. --- .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 092ff980..0ad98ff6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -106,7 +106,7 @@ jobs: brew install coveralls --quiet ls -lh .coverage ls -lh coverage.xml - coveralls report coverage.xml --format=cobertura --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} + coveralls report coverage.xml --format=cobertura --verbose --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} --debug --dry-run finish: name: Finish Coverage Analysis From aa0582509af27439c7a113066df8766e2ce5c943 Mon Sep 17 00:00:00 2001 From: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com> Date: Mon, 8 Jul 2024 14:31:57 -0400 Subject: [PATCH 39/39] NEP29 for June 2024 --- .github/workflows/main.yml | 2 +- CHANGELOG.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0ad98ff6..45e17fae 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: test_config: ["latest"] include: - python-version: "3.10" - numpy_ver: "1.23" + numpy_ver: "1.24" os: ubuntu-latest test_config: "NEP29" - python-version: "3.6.8" diff --git a/CHANGELOG.md b/CHANGELOG.md index da0dbe7f..116b2df7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). * Use standard clean routine for C/NOFS VEFI mag data * Added version cap for sphinx_rtd_theme * Include standard tests for ICON IVM-B - * Update NEP29 standards for Apr 2024 + * Update NEP29 standards for Jun 2024 ## [0.0.5] - 2023-06-27 * New Instruments