Skip to content

Commit

Permalink
use latest commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Nov 23, 2023
1 parent 33bc8f9 commit b6c16ed
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/Ouranosinc/cookiecutter-pypackage",
"commit": "e528361615f8bb4b886206b9cd49ffda76c45b45",
"commit": "58b13f0c37691917bc5089ee2ff7c650dede5b06",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Ready to contribute? Here's how to set up ``xdatasets`` for local development.

$ mamba env create -f environment-dev.yml
$ conda activate xdatasets
$ flit install --symlink .
$ flit install --symlink

#. To ensure a consistent style, please install the pre-commit hooks to your repo::

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ release: dist ## package and upload a release
python -m flit publish dist/*

install: clean ## install the package to the active Python's site-packages
python -m flit install .
python -m flit install

dev: clean ## install the package to the active Python's site-packages
python -m flit install --symlink .
python -m flit install --symlink
File renamed without changes.
23 changes: 10 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -169,22 +169,22 @@ include = [
"LICENSE",
"Makefile",
"README.rst",
"docs/**/*.gif",
"docs/**/*.ipynb",
"docs/**/*.jpg",
"docs/**/*.png",
"docs/**/*.rst",
"environment-dev.yml",
"environment-docs.yml",
"docs/_static/_images/*.gif",
"docs/_static/_images/*.jpg",
"docs/_static/_images/*.png",
"docs/_static/_images/*.rst",
"docs/Makefile",
"docs/conf.py",
"docs/make.bat",
"setup.cfg",
"tests/*.py",
"tox.ini",
"xdatasets/**/*.py"
"xdatasets"
]
exclude = [
"**/*.py[co]",
"**/__pycache__",
"*.py[co]",
"__pycache__",
".coveralls.yml",
".cruft.json",
".editorconfig",
Expand All @@ -194,12 +194,9 @@ exclude = [
".pre-commit-config.yaml",
".readthedocs.yml",
".yamllint.yaml",
"Makefile",
"docs/_*",
"docs/modules.rst",
"docs/xdatasets*.rst",
"environment-docs.yml",
"environment-dev.yml"
"docs/xdatasets*.rst"
]

[tool.isort]
Expand Down

0 comments on commit b6c16ed

Please sign in to comment.