Ver a proveniência

Bump psycopg2 version (#9204)

As we use `execute_values` with the `fetch` parameter.
tags/v1.26.0rc2
Erik Johnston há 3 anos
committed by GitHub
ascendente
cometimento
28f255d5f3
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
3 ficheiros alterados com 4 adições e 3 eliminações
  1. +1
    -0
      changelog.d/9204.misc
  2. +2
    -2
      synapse/python_dependencies.py
  3. +1
    -1
      tox.ini

+ 1
- 0
changelog.d/9204.misc Ver ficheiro

@@ -0,0 +1 @@
Bump minimum `psycopg2` version.

+ 2
- 2
synapse/python_dependencies.py Ver ficheiro

@@ -86,8 +86,8 @@ REQUIREMENTS = [

CONDITIONAL_REQUIREMENTS = {
"matrix-synapse-ldap3": ["matrix-synapse-ldap3>=0.1"],
# we use execute_batch, which arrived in psycopg 2.7.
"postgres": ["psycopg2>=2.7"],
# we use execute_values with the fetch param, which arrived in psycopg 2.8.
"postgres": ["psycopg2>=2.8"],
# ACME support is required to provision TLS certificates from authorities
# that use the protocol, such as Let's Encrypt.
"acme": [


+ 1
- 1
tox.ini Ver ficheiro

@@ -117,7 +117,7 @@ commands =
# Make all greater-thans equals so we test the oldest version of our direct
# dependencies, but make the pyopenssl 17.0, which can work against an
# OpenSSL 1.1 compiled cryptography (as older ones don't compile on Travis).
/bin/sh -c 'python -m synapse.python_dependencies | sed -e "s/>=/==/g" -e "s/psycopg2==2.6//" -e "s/pyopenssl==16.0.0/pyopenssl==17.0.0/" | xargs -d"\n" pip install'
/bin/sh -c 'python -m synapse.python_dependencies | sed -e "s/>=/==/g" -e "/psycopg2/d" -e "s/pyopenssl==16.0.0/pyopenssl==17.0.0/" | xargs -d"\n" pip install'

# Install Synapse itself. This won't update any libraries.
pip install -e ".[test]"


Carregando…
Cancelar
Guardar