-
Notifications
You must be signed in to change notification settings - Fork 29
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
Add Conda Support #1028
base: master
Are you sure you want to change the base?
Add Conda Support #1028
Conversation
✅ Deploy Preview for blissful-goodall-fa23f6 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
9de09ea
to
f2000ff
Compare
update removed logging
f2000ff
to
bde2b29
Compare
{request.provider === 'anaconda-r' && ( | ||
<CondaVersionPicker request={request} onChange={this.condaVersionChanged.bind(this, request)} /> | ||
)} | ||
{request.provider === 'cratesio' && ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a duplicate of line 124
@@ -108,6 +111,8 @@ const curateFilters = [ | |||
const types = [ | |||
{ value: 'composer', label: 'Composer', provider: 'packagist' }, | |||
{ value: 'pod', label: 'Pod', provider: 'cocoapods' }, | |||
{ value: 'conda', label: 'Conda', provider: 'conda-forge' }, | |||
{ value: 'condasrc', label: 'Conda Sources', provider: 'conda-forge' }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently, the drop file feature in the workspace view (base-url/workspace) only allows for one provider (conda-forge) per type (conda) of components. An example of json file content can be found at
const fossaInput = { |
Website Implementation for clearlydefined/crawler#532