mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
@@ -1,3 +1,5 @@
|
||||
7.8.5:
|
||||
- Edge case.
|
||||
7.8.4:
|
||||
- Flake8 checking with check --style!
|
||||
7.8.3:
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
# //___/ / / / //___/ / // // / / || / /
|
||||
# // / / // ((____ // / / ||/ /
|
||||
|
||||
__version__ = '7.8.4'
|
||||
__version__ = '7.8.5'
|
||||
|
||||
+5
-1
@@ -208,7 +208,11 @@ class Project(object):
|
||||
data[section][package].update(_data)
|
||||
|
||||
# We lose comments here, but it's for the best.)
|
||||
return contoml.loads(toml.dumps(data, preserve=True))
|
||||
try:
|
||||
return contoml.loads(toml.dumps(data, preserve=True))
|
||||
except RuntimeError:
|
||||
return toml.loads(toml.dumps(data, preserve=True))
|
||||
|
||||
else:
|
||||
# Fallback to toml parser, for large files.
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user