Skip to content

Commit

Permalink
Disable YAMALE YAML based approach (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 authored May 3, 2021
1 parent 8a5ddb4 commit 3a43508
Show file tree
Hide file tree
Showing 16 changed files with 7 additions and 659 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
concurrent_skipping: 'same_content'
skip_after_successful_duplicate: 'false'
do_not_skip: '["workflow_dispatch", "schedule"]'
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
paths_ignore: '["**/docs/**"]'
build:
needs: pre-job
Expand Down
1 change: 0 additions & 1 deletion ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ dependencies:
- rich
- typer
- xarray
- yamale
2 changes: 1 addition & 1 deletion ecgtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
_version__ = '0.0.0'
__version__ = '0.0.0'
4 changes: 2 additions & 2 deletions ecgtools/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
from distributed import Client
from ncar_jobqueue import NCARCluster

from .builders.cesm import smyle_parser
from .builders.cmip import cmip6_parser
from .core import Builder, console
from .parsers.cesm import smyle_parser
from .parsers.cmip import cmip6_parser

app = typer.Typer(help='ESM Catalog Generation CLI')

Expand Down
219 changes: 0 additions & 219 deletions ecgtools/parsers.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
82 changes: 0 additions & 82 deletions notebooks/Generic_Interface_Example.ipynb

This file was deleted.

1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ netCDF4
rich
typer
xarray
yamale
pyyaml
13 changes: 0 additions & 13 deletions sample_yaml/cmip6.yaml

This file was deleted.

17 changes: 0 additions & 17 deletions sample_yaml/ensemble.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions schema/generic_schema.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ select = B,C,E,F,W,T4,B9

[isort]
known_first_party=ecgtools
known_third_party=cf_xarray,dask,distributed,intake,ncar_jobqueue,netCDF4,pandas,pkg_resources,pytest,rich,setuptools,typer,xarray,yaml
known_third_party=cf_xarray,dask,distributed,ncar_jobqueue,pandas,pkg_resources,rich,setuptools,typer,xarray
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
keywords='ecgtools',
name='ecgtools',
packages=find_packages(include=['ecgtools', 'ecgtools.*']),
data_files=[('schema', ['schema/generic_schema.yaml'])],
entry_points={'console_scripts': ['ecgtools = ecgtools.cli:main']},
url='https://github.com/NCAR/ecgtools',
project_urls={
Expand Down
Loading

0 comments on commit 3a43508

Please sign in to comment.