1.0.0b4 updates private repo dependencies every time
See original GitHub issue-
I am on the latest Poetry version.
-
I have searched the issues of this repo and believe that this is not a duplicate.
-
If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option). -
OS version and name: macOS 10.14.6 Mojave
-
Poetry version: 1.0.0b4
Issue
For every project I have which includes dependencies from a private repo (Gemfury), when installing with poetry install
every private repo dep shows that it’s “updating” when there are no changes. For example - Updating s3-profiler (0.1.0 -> 0.1.0)
. This only happens with dependencies from my private repo, and it happens every time.
In my pyproject.toml:
[[tool.poetry.source]]
name = "triaxtec"
url = "https://pypi.fury.io/triaxtec/"
[tool.poetry.dependencies]
s3-profiler = "^0.1.0"
In my poetry.lock:
[[package]]
category = "main"
description = "For profiling code and uploading the results to s3"
name = "s3-profiler"
optional = false
python-versions = ">=3.7.0,<4.0.0"
version = "0.1.0"
[package.source]
reference = "triaxtec"
type = "legacy"
url = "https://pypi.fury.io/triaxtec"
...
s3-profiler = [
{file = "s3_profiler-0.1.0-py3-none-any.whl", hash = "md5:f727c6e99216af72d8dc4f9db24ef5bb"},
]
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Keep all your packages up to date with Dependabot
Keep all your dependencies updated. Version updates regularly update all the packages used by your repository, even if they don't have any known ......
Read more >Important notes 1.x — Borg - Deduplicating Archiver 2.0.0b4 ...
Run borg upgrade --tam <repository> on every client for each repository. ... borg < 1.2 archives. the first time borg info is invoked...
Read more >git-autoshare - PyPI
A git clone wrapper that automatically uses --reference to save time and space.
Read more >package.json - npm Docs
This file contains the dependencies renderized and super-streams which can be installed in a new project by executing npm install awesome-web-framework-1.0.0.
Read more >Python Extension Packages for Windows - Christoph Gohlke
Most binaries are built from source code found on PyPI or in the projects public revision control systems. Source code changes, if any,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@sdispater I think this fix may have caused #1602 which stops export from working with private repo dependencies.
@danyeaw have you seen #1612 ? Might be closer to your issue.
I’m closing this one since 1.0.0b5 fixed it and 1.0.0b8 fixed #1602 mentioned above.