Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = True
tag = True

Expand Down
138 changes: 0 additions & 138 deletions .github/workflows/create-release-pr.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/finalize-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
uses: actions/checkout@v4
with:
ref: release
lfs: true

- name: Get version from files
run: |
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/package-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
lfs: true

- name: Verify LFS files
run: |
echo "Checking LFS files..."
ls -la quickview/data/
file quickview/data/globe.vtk
file quickview/data/connectivity.nc
echo "LFS file check complete"

- name: Get version for tagging
id: get_version
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# QuickView

[![CI](https://github.com/E3SM-Project/QuickView/actions/workflows/ci.yml/badge.svg)](https://github.com/E3SM-Project/QuickView/actions/workflows/ci.yml)
[![Pre-commit](https://github.com/E3SM-Project/QuickView/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/E3SM-Project/QuickView/actions/workflows/pre-commit.yml)
[![Test](https://github.com/ayenpure/QuickView/actions/workflows/test.yml/badge.svg)](https://github.com/ayenpure/QuickView/actions/workflows/test.yml)
[![Package and Release](https://github.com/ayenpure/QuickView/actions/workflows/package-and-release.yml/badge.svg)](https://github.com/ayenpure/QuickView/actions/workflows/package-and-release.yml)

A scientific visualization application for exploring atmospheric data from the
E3SM (Energy Exascale Earth System Model) project.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "quickview"
version = "0.1.0"
version = "0.1.1"
description = "An application to explore/analyze data for atmosphere component for E3SM"
authors = [
{name = "Kitware Inc."},
Expand Down
2 changes: 1 addition & 1 deletion quickview/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""QuickView: Visual Analysis for E3SM Atmosphere Data."""

__version__ = "0.1.0"
__version__ = "0.1.1"
__author__ = "Kitware Inc."
__license__ = "Apache-2.0"
Loading
Loading