Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
2ee91b69
Unverified
Commit
2ee91b69
authored
Apr 18, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error with git dependencies
parent
eea601c3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
CHANGELOG.md
+1
-0
poetry/installation/installer.py
+2
-2
poetry/puzzle/provider.py
+3
-0
poetry/vcs/git.py
+1
-1
No files found.
CHANGELOG.md
View file @
2ee91b69
...
...
@@ -6,6 +6,7 @@
-
Fixed a bug where dependencies constraints in lock were too strict.
-
Fixed unicode error in
`search`
command for Python 2.7.
-
Fixed error with git dependencies.
## [0.8.3] - 2018-04-16
...
...
poetry/installation/installer.py
View file @
2ee91b69
...
...
@@ -322,8 +322,8 @@ class Installer:
' - Updating <info>{}</> (<comment>{}</> -> <comment>{}</>)'
.
format
(
target
.
pretty_name
,
source
.
pretty_version
,
target
.
pretty_version
source
.
full_
pretty_version
,
target
.
full_
pretty_version
)
)
...
...
poetry/puzzle/provider.py
View file @
2ee91b69
...
...
@@ -139,6 +139,9 @@ class Provider(SpecificationProvider):
name
=
info
[
'name'
]
version
=
info
[
'version'
]
package
=
Package
(
name
,
version
,
version
)
package
.
source_type
=
dependency
.
vcs
package
.
source_url
=
dependency
.
source
package
.
source_reference
=
dependency
.
reference
for
req_name
,
req_constraint
in
info
[
'dependencies'
]
.
items
():
if
req_name
==
'python'
:
package
.
python_versions
=
req_constraint
...
...
poetry/vcs/git.py
View file @
2ee91b69
...
...
@@ -39,7 +39,7 @@ class Git:
return
self
.
_config
def
clone
(
self
,
repository
,
dest
):
# type: (...) -> str
return
self
.
run
(
'clone'
,
repository
,
dest
)
return
self
.
run
(
'clone'
,
repository
,
str
(
dest
)
)
def
checkout
(
self
,
rev
,
folder
=
None
):
# type: (...) -> str
args
=
[]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment