Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Antoine Lambert
swh-core
Commits
05f74eac
Commit
05f74eac
authored
5 years ago
by
Nicolas Dandrimont
Browse files
Options
Downloads
Patches
Plain Diff
Move systemd-python to an optional logging subpackage
parent
b89a97dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
MANIFEST.in
+3
-2
3 additions, 2 deletions
MANIFEST.in
requirements-logging.txt
+1
-0
1 addition, 0 deletions
requirements-logging.txt
requirements.txt
+0
-1
0 additions, 1 deletion
requirements.txt
setup.py
+2
-1
2 additions, 1 deletion
setup.py
tox.ini
+1
-0
1 addition, 0 deletions
tox.ini
with
7 additions
and
4 deletions
MANIFEST.in
+
3
−
2
View file @
05f74eac
include Makefile
include requirements.txt
include requirements-swh.txt
include requirements-http.txt
include requirements-db.txt
include requirements-http.txt
include requirements-logging.txt
include requirements-swh.txt
include version.txt
recursive-include swh/core/sql *.sql
recursive-include swh py.typed
...
...
This diff is collapsed.
Click to expand it.
requirements-logging.txt
0 → 100644
+
1
−
0
View file @
05f74eac
systemd-python
This diff is collapsed.
Click to expand it.
requirements.txt
+
0
−
1
View file @
05f74eac
Deprecated
PyYAML
systemd-python
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
1
View file @
05f74eac
...
...
@@ -51,7 +51,8 @@ setup(
install_requires
=
parse_requirements
(
None
,
'
swh
'
),
setup_requires
=
[
'
vcversioner
'
],
extras_require
=
{
'
testing
'
:
parse_requirements
(
'
test
'
,
'
db
'
,
'
http
'
),
'
testing
'
:
parse_requirements
(
'
test
'
,
'
db
'
,
'
http
'
,
'
logging
'
),
'
logging
'
:
parse_requirements
(
'
logging
'
),
'
db
'
:
parse_requirements
(
'
db
'
),
'
http
'
:
parse_requirements
(
'
http
'
),
},
...
...
This diff is collapsed.
Click to expand it.
tox.ini
+
1
−
0
View file @
05f74eac
...
...
@@ -4,6 +4,7 @@ envlist=flake8,mypy,py3-{core,db,server}
[testenv:py3-core]
deps
=
-rrequirements-test.txt
-rrequirements-logging.txt
.
commands
=
pytest
--doctest-modules
{envsitepackagesdir}/swh/core/tests
{posargs}
...
...
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