Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
593eeac1
Commit
593eeac1
authored
3 years ago
by
Olivier Wilkinson (reivilibre)
Browse files
Options
Downloads
Patches
Plain Diff
Revert accidental push to develop.
parent
d51a3400
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changelog.d/11034.misc
+0
-1
0 additions, 1 deletion
changelog.d/11034.misc
docs/development/contributing_guide.md
+1
-1
1 addition, 1 deletion
docs/development/contributing_guide.md
setup.py
+9
-14
9 additions, 14 deletions
setup.py
with
10 additions
and
16 deletions
changelog.d/11034.misc
deleted
100644 → 0
+
0
−
1
View file @
d51a3400
When installing the optional developer dependencies, also include the dependencies needed for type-checking and unit testing.
This diff is collapsed.
Click to expand it.
docs/development/contributing_guide.md
+
1
−
1
View file @
593eeac1
...
...
@@ -50,7 +50,7 @@ setup a *virtualenv*, as follows:
cd
path/where/you/have/cloned/the/repository
python3
-m
venv ./env
source
./env/bin/activate
pip
install
-e
".[all,
dev
]"
pip
install
-e
".[all,
lint,mypy,test
]"
pip
install
tox
```
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
9
−
14
View file @
593eeac1
...
...
@@ -103,6 +103,15 @@ CONDITIONAL_REQUIREMENTS["lint"] = [
"
flake8
"
,
]
CONDITIONAL_REQUIREMENTS
[
"
dev
"
]
=
CONDITIONAL_REQUIREMENTS
[
"
lint
"
]
+
[
# The following are used by the release script
"
click==7.1.2
"
,
"
redbaron==0.9.2
"
,
"
GitPython==3.1.14
"
,
"
commonmark==0.9.1
"
,
"
pygithub==1.55
"
,
]
CONDITIONAL_REQUIREMENTS
[
"
mypy
"
]
=
[
"
mypy==0.910
"
,
"
mypy-zope==0.3.2
"
,
...
...
@@ -121,20 +130,6 @@ CONDITIONAL_REQUIREMENTS["mypy"] = [
# parameterized_class decorator was introduced in parameterized 0.7.0
CONDITIONAL_REQUIREMENTS
[
"
test
"
]
=
[
"
parameterized>=0.7.0
"
]
CONDITIONAL_REQUIREMENTS
[
"
dev
"
]
=
(
CONDITIONAL_REQUIREMENTS
[
"
lint
"
]
+
CONDITIONAL_REQUIREMENTS
[
"
mypy
"
]
+
CONDITIONAL_REQUIREMENTS
[
"
test
"
]
+
[
# The following are used by the release script
"
click==7.1.2
"
,
"
redbaron==0.9.2
"
,
"
GitPython==3.1.14
"
,
"
commonmark==0.9.1
"
,
"
pygithub==1.55
"
,
]
)
setup
(
name
=
"
matrix-synapse
"
,
version
=
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