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
68770a67
Commit
68770a67
authored
Jan 28, 2023
by
Randy Döring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update required poetry-core and poetry-plugin-export and relock dependencies
parent
cb17220c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
7 deletions
+12
-7
.pre-commit-config.yaml
+1
-1
poetry.lock
+0
-0
pyproject.toml
+10
-5
src/poetry/factory.py
+1
-1
No files found.
.pre-commit-config.yaml
View file @
68770a67
...
@@ -59,7 +59,7 @@ repos:
...
@@ -59,7 +59,7 @@ repos:
args
:
[
--all
]
args
:
[
--all
]
-
repo
:
https://github.com/pycqa/isort
-
repo
:
https://github.com/pycqa/isort
rev
:
5.1
1.4
rev
:
5.1
2.0
hooks
:
hooks
:
-
id
:
isort
-
id
:
isort
name
:
"
isort
(python)"
name
:
"
isort
(python)"
...
...
poetry.lock
View file @
68770a67
This source diff could not be displayed because it is too large. You can
view the blob
instead.
pyproject.toml
View file @
68770a67
...
@@ -47,8 +47,8 @@ generate-setup-file = false
...
@@ -47,8 +47,8 @@ generate-setup-file = false
[tool.poetry.dependencies]
[tool.poetry.dependencies]
python
=
"^3.7"
python
=
"^3.7"
poetry-core
=
"1.
4
.0"
poetry-core
=
"1.
5
.0"
poetry-plugin-export
=
"^1.
2
.0"
poetry-plugin-export
=
"^1.
3
.0"
"backports.cached-property"
=
{
version
=
"^1.0.2"
,
python
=
"<3.8"
}
"backports.cached-property"
=
{
version
=
"^1.0.2"
,
python
=
"<3.8"
}
cachecontrol
=
{
version
=
"^0.12.9"
,
extras
=
["filecache"]
}
cachecontrol
=
{
version
=
"^0.12.9"
,
extras
=
["filecache"]
}
cleo
=
"^2.0.0"
cleo
=
"^2.0.0"
...
@@ -75,9 +75,9 @@ tomlkit = ">=0.11.1,<1.0.0,!=0.11.2,!=0.11.3"
...
@@ -75,9 +75,9 @@ tomlkit = ">=0.11.1,<1.0.0,!=0.11.2,!=0.11.3"
trove-classifiers
=
">=2022.5.19"
trove-classifiers
=
">=2022.5.19"
# exclude 20.4.5 - 20.4.6 due to https://github.com/pypa/pip/issues/9953
# exclude 20.4.5 - 20.4.6 due to https://github.com/pypa/pip/issues/9953
virtualenv
=
[
virtualenv
=
[
{
version
=
"^20.4.3,!=20.4.5,!=20.4.6"
,
markers
=
"sys_platform != 'win32' or python_version != '3.9'"
}
,
{
version
=
"^20.4.3,!=20.4.5,!=20.4.6"
}
,
# see https://github.com/python-poetry/poetry/pull/6950 for details
# see https://github.com/python-poetry/poetry/pull/6950 for details
{
version
=
"
^20.4.3,!=20.4.5,!=20.4.6,
<20.16.6"
,
markers
=
"sys_platform == 'win32' and python_version == '3.9'"
}
,
{
version
=
"<20.16.6"
,
markers
=
"sys_platform == 'win32' and python_version == '3.9'"
}
,
]
]
xattr
=
{
version
=
"^0.10.0"
,
markers
=
"sys_platform == 'darwin'"
}
xattr
=
{
version
=
"^0.10.0"
,
markers
=
"sys_platform == 'darwin'"
}
urllib3
=
"^1.26.0"
urllib3
=
"^1.26.0"
...
@@ -88,7 +88,12 @@ pre-commit = "^2.6"
...
@@ -88,7 +88,12 @@ pre-commit = "^2.6"
[tool.poetry.group.test.dependencies]
[tool.poetry.group.test.dependencies]
# Cachy frozen to test backwards compatibility for `poetry.utils.cache`.
# Cachy frozen to test backwards compatibility for `poetry.utils.cache`.
cachy
=
"0.3.0"
cachy
=
"0.3.0"
deepdiff
=
"^6.2"
deepdiff
=
[
{
version
=
"^6.2"
}
,
# avoid orjson, which is required by deepdiff 6.2.3, on FreeBSD
# because it requires a rust compiler
{
version
=
"<6.2.3"
,
markers
=
"platform_system == 'FreeBSD'"
}
,
]
httpretty
=
"^1.0"
httpretty
=
"^1.0"
pytest
=
"^7.1"
pytest
=
"^7.1"
pytest-cov
=
"^4.0"
pytest-cov
=
"^4.0"
...
...
src/poetry/factory.py
View file @
68770a67
...
@@ -107,7 +107,7 @@ class Factory(BaseFactory):
...
@@ -107,7 +107,7 @@ class Factory(BaseFactory):
@classmethod
@classmethod
def
get_package
(
cls
,
name
:
str
,
version
:
str
)
->
ProjectPackage
:
def
get_package
(
cls
,
name
:
str
,
version
:
str
)
->
ProjectPackage
:
return
ProjectPackage
(
name
,
version
,
version
)
return
ProjectPackage
(
name
,
version
)
@classmethod
@classmethod
def
configure_sources
(
def
configure_sources
(
...
...
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