Skip to content

Remove conda recipe files (re-open once srfit available on conda-forge) #85

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
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
7 changes: 0 additions & 7 deletions conda-recipe/bld.bat

This file was deleted.

8 changes: 0 additions & 8 deletions conda-recipe/build.sh

This file was deleted.

5 changes: 0 additions & 5 deletions conda-recipe/conda_build_config.yaml

This file was deleted.

66 changes: 0 additions & 66 deletions conda-recipe/meta.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions conda-recipe/run_test.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/diffpy/srfit/fitbase/recipeorganizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ def show(self, pattern="", textwidth=78):
the screen width. Do not trim when negative or 0.
"""
regexp = re.compile(pattern)
pmatch = lambda s: (len(s.split(None, 1)) < 2 or regexp.search(s.split(None, 1)[0]))
pmatch = lambda s: (len(s.split(None, 1)) < 2 or regexp.search(s.split(None, 1)[0])) # noqa: E731
# Show sub objects and their parameters
lines = []
tlines = self._formatManaged()
Expand Down