question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Add dependency to Azure Artifacts-keyring package

See original GitHub issue

Add “Artifacts-keyring” package to conda-forge:

https://pypi.org/project/artifacts-keyring/

It is not possible to use a env.yaml file to install and package that is located on an AzurePypi.

This does not work because artifacts-keyring needs to be installed first BEFORE resolving the packages using pip.

name: my_name
channels:
  - conda-forge
dependencies:
  - python=3.7
  - keyring
  - pip:
      - artifacts-keyring
      - AzurePypi_package

This would work because artifacts-keyring would be installed first.

name: my_name
channels:
  - conda-forge
dependencies:
  - python=3.7
  - keyring
  - artifacts-keyring
  - pip:
      - AzurePypi_package

Issue Analytics

  • State:open
  • Created 4 years ago
  • Reactions:10
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
smasihemamicommented, Nov 22, 2021

Any updates on this issue?

0reactions
dopplershiftcommented, Nov 22, 2021

No one so far has stepped up to contribute and maintain a recipe for artifacts-keyring.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Get started with Python packages in Azure Artifacts
The artifacts-keyring package allows you to set up authentication to publish and consume your Python packages to and from your feed. Both pip ......
Read more >
artifacts-keyring - PyPI
The artifacts-keyring package provides authentication for publishing or consuming Python packages to or from Azure Artifacts feeds within Azure DevOps.
Read more >
python - Sharing artifacts-keyring authentication and pip.conf ...
To develop Python and keep dependencies isolated while still having access to the private feed and authentication I've used Azure Devops ...
Read more >
Install Python Packages From Azure DevOps - menziess blog
A common problem I face is the inability to install python dependencies using pip : ... pip install keyring artifacts-keyring. Got an error?...
Read more >
Releasing and using Python packages with Azure DevOps ...
NET SDK via installer and also install dependent packages: pip install keyring artifacts-keyring. It's also required to add additional ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found