Skip to content

Commit

Permalink
updated giturlparse, resolves #277
Browse files Browse the repository at this point in the history
  • Loading branch information
godfryd committed Jul 1, 2023
1 parent a32ecdd commit 3e8bf50
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,10 @@ agent_src = [
'agent/kraken/agent/sysutils.py',
'agent/kraken/agent/tool.py',
'agent/kraken/agent/update.py',
'agent/kraken/agent/utils.py'
'agent/kraken/agent/utils.py',

'agent/requirements.txt',
'agent/reqs-tool.txt',
]

file 'agent/kraken/agent/consts.py' => 'server/kraken/server/consts.py' do
Expand Down
2 changes: 1 addition & 1 deletion agent/reqs-tool.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
distro==1.7.0
giturlparse==0.10.0
giturlparse @ git+https://github.com/nephila/giturlparse.git@f65f609662edb5f21dc7ccf506f54b3ac888cc89
minio==7.0.0
2 changes: 1 addition & 1 deletion agent/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#pylxd==2.2.10
distro==1.7.0
setuptools==49.6.0
giturlparse==0.10.0
giturlparse @ git+https://github.com/nephila/giturlparse.git@f65f609662edb5f21dc7ccf506f54b3ac888cc89
minio==7.0.0
click==7.1.2
urllib3==1.26.15
5 changes: 3 additions & 2 deletions server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ packages = [
include = ["kraken/version.py"]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
connexion = "^2.14.2"
MarkupSafe = "2.1.2"
Flask = "^2.2.3"
Expand All @@ -42,7 +42,8 @@ python-dateutil = "^2.8.2"
gunicorn = "^20.1.0"
RestrictedPython = "5.0"
alembic = "^1.7.3"
giturlparse = "^0.10.0"
# giturlparse = "^0.10.0"
giturlparse = { git = "https://github.com/nephila/giturlparse.git", rev = "f65f609662edb5f21dc7ccf506f54b3ac888cc89" }
clickhouse-driver = "^0.2.5"
minio = "^7.1.0"
passlib = "^1.7.4"
Expand Down

0 comments on commit 3e8bf50

Please sign in to comment.