Skip to content

Commit

Permalink
Update meta package
Browse files Browse the repository at this point in the history
  • Loading branch information
wpreimes committed Aug 2, 2023
1 parent b006347 commit c5f44f2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install package and test
shell: bash -l {0}
run: |
pip install .
pip install -e .[testing]
pytest
- name: Upload Coverage
shell: bash -l {0}
Expand Down
16 changes: 12 additions & 4 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
# List of conda and pip packages that are should be install when developing the packages
# To create the full conda environment: conda env create -f environment.yml
# List of conda and pip packages that are should be installed when
# developing the packages
# To create the full conda environment (any supported python version):
# mamba create -n repurpose python=3.10
# mamba env update -f environment.yml -n repurpose
name: repurpose
channels:
- defaults
- conda-forge
dependencies:
- numpy
- pandas
- pyresample
- netcdf4!=1.6.2
- netcdf4
- pyproj
- xarray
- pip
- pip:
- pygeogrids
- pynetcf
- pynetcf>=0.5.0
- more_itertools
- sphinx_rtd_theme
- smecv_grid
- tqdm
- yapf
- pytest
- pytest-cov
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ install_requires =
importlib-metadata; python_version<"3.8"
numpy
pygeogrids>=0.1.3
netCDF4!=1.6.2
pynetcf
netCDF4
pynetcf>=0.5.0
pyresample
tqdm
more_itertools
# The usage of test_requires is discouraged, see `Dependency Management` docs
# tests_require = pytest; pytest-cov
Expand All @@ -53,6 +54,7 @@ exclude =
# PDF = ReportLab; RXP
# Add here test requirements (semicolon/line-separated)
testing =
smecv_grid
pytest
pytest-cov

Expand Down
53 changes: 0 additions & 53 deletions src/repurpose/test.py

This file was deleted.

0 comments on commit c5f44f2

Please sign in to comment.