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
887427bb
Unverified
Commit
887427bb
authored
Apr 02, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update documentation
parent
68263141
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
20 deletions
+20
-20
docs/docs/basic-usage.md
+1
-1
docs/docs/versions.md
+19
-19
No files found.
docs/docs/basic-usage.md
View file @
887427bb
# Basic usage
# Basic usage
For the basic usage introduction we will be installing
`pendulum`
, a datetime library.
For the basic usage introduction we will be installing
`pendulum`
, a datetime library.
If you have not yet installed Poetry, refer to the
[
Introduction
](
/
docs/#introduction
)
chapter.
If you have not yet installed Poetry, refer to the
[
Introduction
](
/
)
chapter.
## Project setup
## Project setup
...
...
docs/docs/versions.md
View file @
887427bb
...
@@ -15,15 +15,15 @@ If instead we had specified the version string as `^0.1.13`, poetry would update
...
@@ -15,15 +15,15 @@ If instead we had specified the version string as `^0.1.13`, poetry would update
Here are some more examples of caret requirements and the versions that would be allowed with them:
Here are some more examples of caret requirements and the versions that would be allowed with them:
```
text
| Requirement | Versions allowed |
^1.2.3 := >=1.2.3 <2.0.0
| ----------- | ---------------- |
^1.2 := >=1.2.0 <2.0.0
| ^1.2.3 | >=1.2.3 <2.0.0 |
^1 := >=1.0.0 <2.0.0
| ^1.2 | >=1.2.0 <2.0.0 |
^0.2.3 := >=0.2.3 <0.3.0
| ^1 | >=1.0.0 <2.0.0 |
^0.0.3 := >=0.0.3 <0.0.4
| ^0.2.3 | >=0.2.3 <0.3.0 |
^0.0 := >=0.0.0 <0.1.0
| ^0.0.3 | >=0.0.3 <0.0.4 |
^0 := >=0.0.0 <1.0.0
| ^0.0 | >=0.0.0 <0.1.0 |
```
| ^0 | >=0.0.0 <1.0.0 |
### Tilde requirements
### Tilde requirements
...
@@ -33,11 +33,11 @@ If you only specify a major version, then minor- and patch-level changes are all
...
@@ -33,11 +33,11 @@ If you only specify a major version, then minor- and patch-level changes are all
`~1.2.3`
is an example of a tilde requirement.
`~1.2.3`
is an example of a tilde requirement.
```
text
| Requirement | Versions allowed |
~1.2.3 := >=1.2.3 <1.3.0
| ----------- | ---------------- |
~1.2 := >=1.2.0 <1.3.0
| ~1.2.3 | >=1.2.3 <1.3.0 |
~1 := >=1.0.0 <2.0.0
| ~1.2 | >=1.2.0 <1.3.0 |
```
| ~1 | >=1.0.0 <2.0.0 |
### Wildcard requirements
### Wildcard requirements
...
@@ -45,11 +45,11 @@ If you only specify a major version, then minor- and patch-level changes are all
...
@@ -45,11 +45,11 @@ If you only specify a major version, then minor- and patch-level changes are all
`*`
,
`1.*`
and
`1.2.*`
are examples of wildcard requirements.
`*`
,
`1.*`
and
`1.2.*`
are examples of wildcard requirements.
```
text
| Requirement | Versions allowed |
* := >=0.0.0
| ----------- | ---------------- |
1.* := >=1.0.0 <2.0.0
|
*
| >=0.0.0 |
1.2.* := >=1.2.0 <1.3.0
| 1.
*
| >=1.0.0 <2.0.0 |
```
| 1.2.
*
| >=1.2.0 <1.3.0 |
### Inequality requirements
### Inequality requirements
...
...
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