Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
panacota
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Amandine PERRIN
panacota
Commits
4079ca6d
Commit
4079ca6d
authored
1 year ago
by
Amandine PERRIN
Browse files
Options
Downloads
Patches
Plain Diff
install dev requirements from pyproject.toml
parent
1e2c7594
No related branches found
No related tags found
No related merge requests found
Pipeline
#110439
failed
1 year ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
make
+6
-6
6 additions, 6 deletions
make
pyproject.toml
+1
-1
1 addition, 1 deletion
pyproject.toml
with
8 additions
and
8 deletions
.gitlab-ci.yml
+
1
−
1
View file @
4079ca6d
...
...
@@ -38,7 +38,7 @@ build-from-prokka-quicktree:
-
install
script
:
-
pip3 install --upgrade pip
-
pip3 install -
r requirements-dev.txt
-
pip3 install -
e .[dev]
-
py.test test/test_install/test_make_prokka-quicktree.py -xv
build-from-prodigal
:
...
...
This diff is collapsed.
Click to expand it.
make
+
6
−
6
View file @
4079ca6d
...
...
@@ -86,12 +86,12 @@ def install_all(install_dir, target, dev=False, user=False):
opt
=
""
if
dev
:
logger
.
info
(
"
Installing developer packages needed for PanACoTA
"
)
cmd
=
"
pip3 install
"
+
opt
+
"
-e .
"
cmd2
=
"
pip3 install -r requirements-dev.txt
"
error2
=
(
"
Problem while trying to install developer tools. If you have
"
"
permission errors, try to add
'
sudo
'
before your command line. If
"
"
you do not have root access, install with the
'
--user
'
option
"
)
run_cmd
(
cmd2
,
error2
,
eof
=
True
)
cmd
=
"
pip3 install
"
+
opt
+
"
-e .
[dev]
"
#
cmd2 = "pip3 install -r requirements-dev.txt"
#
error2 = ("Problem while trying to install developer tools. If you have "
#
"permission errors, try to add 'sudo' before your command line. If "
#
"you do not have root access, install with the '--user' option")
#
run_cmd(cmd2, error2, eof=True)
else
:
cmd
=
"
pip3 install
"
+
opt
+
"
.
"
error
=
(
"
A problem occurred while trying to install PanACoTA. If you have
"
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
+
1
−
1
View file @
4079ca6d
...
...
@@ -20,7 +20,7 @@ classifiers = [
"Operating System :: OS Independent"
,
"Topic :: Scientific/Engineering :: Bio-Informatics"
,
]
dynamic
=
[
"version"
,
"readme"
,
"dependencies"
]
dynamic
=
[
"version"
,
"readme"
,
"dependencies"
,
"optional-dependencies"
]
[
tool.setuptools.dynamic
]
version
=
{
attr
=
"PanACoTA.__init__.__version__"
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment