You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This same pyproject.toml and following command work as expected on 1.0.10, but I needed to update to preview as of #2711, because I have python 3.8 and I need python3.6 for this project.
It's suddenly not respecting my private repo anymore
poetry add basespace==2.0.0 -vvv
Using virtualenv: /Users/gvandestee/Library/Caches/pypoetry/virtualenvs/manifest-ui-K3Huwxuy-py3.6
PyPI: No packages found for basespace 2.0.0
ils: 0 packages found for basespace 2.0.0
Stack trace:
6 ~/Library/Python/3.8/lib/python/site-packages/clikit/console_application.py:131 in run
129│ parsed_args = resolved_command.args
130│
→ 131│ status_code = command.handle(parsed_args, io)
132│ except KeyboardInterrupt:
133│ status_code = 1
5 ~/Library/Python/3.8/lib/python/site-packages/clikit/api/command/command.py:120 in handle
118│ def handle(self, args, io): # type: (Args, IO) -> int
119│ try:
→ 120│ status_code = self._do_handle(args, io)
121│ except KeyboardInterrupt:
122│ if io.is_debug():
4 ~/Library/Python/3.8/lib/python/site-packages/clikit/api/command/command.py:171 in _do_handle
169│ handler_method = self._config.handler_method
170│
→ 171│ return getattr(handler, handler_method)(args, io, self)
172│
173│ def __repr__(self): # type: () -> str
3 ~/Library/Python/3.8/lib/python/site-packages/cleo/commands/command.py:92 in wrap_handle
90│ self._command = command
91│
→ 92│ return self.handle()
93│
94│ def handle(self): # type: () -> Optional[int]
2 ~/Library/Python/3.8/lib/python/site-packages/poetry/console/commands/add.py:101 in handle
99│ raise ValueError("Package {} is already present".format(name))
100│
→ 101│ requirements = self._determine_requirements(
102│ packages,
103│ allow_prereleases=self.option("allow-prereleases"),
1 ~/Library/Python/3.8/lib/python/site-packages/poetry/console/commands/init.py:318 in _determine_requirements
316│ # check that the specified version/constraint exists
317│ # before we proceed
→ 318│ name, _ = self._find_best_version_for_package(
319│ requirement["name"],
320│ requirement["version"],
ValueError
Could not find a matching version of package basespace
at ~/Library/Python/3.8/lib/python/site-packages/poetry/console/commands/init.py:343 in _find_best_version_for_package
339│ )
340│
341│ if not package:
342│ # TODO: find similar
→ 343│ raise ValueError(
344│ "Could not find a matching version of package {}".format(name)
345│ )
346│
347│ return package.pretty_name, selector.find_recommended_require_version(package)
The text was updated successfully, but these errors were encountered:
-vvv
option).Issue
This same pyproject.toml and following command work as expected on 1.0.10, but I needed to update to preview as of #2711, because I have python 3.8 and I need python3.6 for this project.
It's suddenly not respecting my private repo anymore
The text was updated successfully, but these errors were encountered: