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
230f7da7
Unverified
Commit
230f7da7
authored
Oct 06, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix formatting
parent
d1a71b07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
poetry/console/commands/init.py
+7
-2
poetry/masonry/utils/tags.py
+1
-1
No files found.
poetry/console/commands/init.py
View file @
230f7da7
...
...
@@ -108,7 +108,9 @@ The <info>init</info> command creates a basic <comment>pyproject.toml</> file in
requirements
=
{}
question
=
"Would you like to define your dependencies"
" (require) interactively?"
question
=
(
"Would you like to define your dependencies"
" (require) interactively?"
)
if
self
.
confirm
(
question
,
True
):
requirements
=
self
.
_format_requirements
(
self
.
_determine_requirements
(
self
.
option
(
"dependency"
))
...
...
@@ -116,7 +118,10 @@ The <info>init</info> command creates a basic <comment>pyproject.toml</> file in
dev_requirements
=
{}
question
=
"Would you like to define your dev dependencies"
" (require-dev) interactively"
question
=
(
"Would you like to define your dev dependencies"
" (require-dev) interactively"
)
if
self
.
confirm
(
question
,
True
):
dev_requirements
=
self
.
_format_requirements
(
self
.
_determine_requirements
(
self
.
option
(
"dev-dependency"
))
...
...
poetry/masonry/utils/tags.py
View file @
230f7da7
...
...
@@ -84,7 +84,7 @@ def get_abi_tag(venv):
if
get_flag
(
venv
,
"Py_UNICODE_SIZE"
,
lambda
:
sys
.
maxunicode
==
0x10
ffff
,
lambda
:
sys
.
maxunicode
==
0x10
FFFF
,
expected
=
4
,
warn
=
(
impl
==
"cp"
and
venv
.
version_info
<
(
3
,
3
)),
)
and
venv
.
version_info
<
(
3
,
3
):
...
...
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