Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 593eeac

Browse files
committed
Revert accidental push to develop.
1 parent d51a340 commit 593eeac

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

changelog.d/11034.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/development/contributing_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ setup a *virtualenv*, as follows:
5050
cd path/where/you/have/cloned/the/repository
5151
python3 -m venv ./env
5252
source ./env/bin/activate
53-
pip install -e ".[all,dev]"
53+
pip install -e ".[all,lint,mypy,test]"
5454
pip install tox
5555
```
5656

setup.py

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,15 @@ def exec_file(path_segments):
103103
"flake8",
104104
]
105105

106+
CONDITIONAL_REQUIREMENTS["dev"] = CONDITIONAL_REQUIREMENTS["lint"] + [
107+
# The following are used by the release script
108+
"click==7.1.2",
109+
"redbaron==0.9.2",
110+
"GitPython==3.1.14",
111+
"commonmark==0.9.1",
112+
"pygithub==1.55",
113+
]
114+
106115
CONDITIONAL_REQUIREMENTS["mypy"] = [
107116
"mypy==0.910",
108117
"mypy-zope==0.3.2",
@@ -121,20 +130,6 @@ def exec_file(path_segments):
121130
# parameterized_class decorator was introduced in parameterized 0.7.0
122131
CONDITIONAL_REQUIREMENTS["test"] = ["parameterized>=0.7.0"]
123132

124-
CONDITIONAL_REQUIREMENTS["dev"] = (
125-
CONDITIONAL_REQUIREMENTS["lint"]
126-
+ CONDITIONAL_REQUIREMENTS["mypy"]
127-
+ CONDITIONAL_REQUIREMENTS["test"]
128-
+ [
129-
# The following are used by the release script
130-
"click==7.1.2",
131-
"redbaron==0.9.2",
132-
"GitPython==3.1.14",
133-
"commonmark==0.9.1",
134-
"pygithub==1.55",
135-
]
136-
)
137-
138133
setup(
139134
name="matrix-synapse",
140135
version=version,

0 commit comments

Comments
 (0)