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
dd76e5ca
Unverified
Commit
dd76e5ca
authored
5 years ago
by
Richard van der Hoff
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #5135 from matrix-org/rav/build_fixes
Build fixes
parents
f73f18fe
5485852b
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/5135.misc
+1
-0
1 addition, 0 deletions
changelog.d/5135.misc
docker/Dockerfile-dhvirtualenv
+2
-1
2 additions, 1 deletion
docker/Dockerfile-dhvirtualenv
synapse/python_dependencies.py
+8
-0
8 additions, 0 deletions
synapse/python_dependencies.py
with
11 additions
and
1 deletion
changelog.d/5135.misc
0 → 100644
+
1
−
0
View file @
dd76e5ca
Ensure that we have `urllib3` <1.25, to resolve incompatibility with `requests`.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
docker/Dockerfile-dhvirtualenv
+
2
−
1
View file @
dd76e5ca
...
...
@@ -55,7 +55,8 @@ RUN apt-get update -qq -o Acquire::Languages=none \
python3-pip \
python3-setuptools \
python3-venv \
sqlite3
sqlite3 \
libpq-dev
COPY --from=builder /dh-virtualenv_1.1-1_all.deb /
...
...
This diff is collapsed.
Click to expand it.
synapse/python_dependencies.py
+
8
−
0
View file @
dd76e5ca
...
...
@@ -69,6 +69,14 @@ REQUIREMENTS = [
"
attrs>=17.4.0
"
,
"
netaddr>=0.7.18
"
,
# requests is a transitive dep of treq, and urlib3 is a transitive dep
# of requests, as well as of sentry-sdk.
#
# As of requests 2.21, requests does not yet support urllib3 1.25.
# (If we do not pin it here, pip will give us the latest urllib3
# due to the dep via sentry-sdk.)
"
urllib3<1.25
"
,
]
CONDITIONAL_REQUIREMENTS
=
{
...
...
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