mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 05:32:30 +08:00
Require aiopg to be less than 1.3.0 (#560)
This commit is contained in:

committed by
GitHub

parent
5b43a5993d
commit
c100b21fa4
@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
([#538](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/538))
|
([#538](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/538))
|
||||||
- Changed the psycopg2-binary to psycopg2 as dependency in production
|
- Changed the psycopg2-binary to psycopg2 as dependency in production
|
||||||
([#543](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/543))
|
([#543](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/543))
|
||||||
|
- Require aiopg to be less than 1.3.0
|
||||||
|
([#560](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/560))
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- `opentelemetry-instrumentation-httpx` Add `httpx` instrumentation
|
- `opentelemetry-instrumentation-httpx` Add `httpx` instrumentation
|
||||||
|
@ -20,7 +20,7 @@ django>=2.2
|
|||||||
|
|
||||||
# Required by instrumentation and exporter packages
|
# Required by instrumentation and exporter packages
|
||||||
aiohttp~=3.0
|
aiohttp~=3.0
|
||||||
aiopg>=0.13.0
|
aiopg>=0.13.0,<1.3.0
|
||||||
asyncpg>=0.12.0
|
asyncpg>=0.12.0
|
||||||
boto~=2.0
|
boto~=2.0
|
||||||
botocore~=1.0
|
botocore~=1.0
|
||||||
|
@ -13,4 +13,4 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
_instruments = ("aiopg >= 0.13.0",)
|
_instruments = ("aiopg >= 0.13.0, < 1.3.0",)
|
||||||
|
@ -21,7 +21,7 @@ libraries = {
|
|||||||
"instrumentation": "opentelemetry-instrumentation-aiohttp-client==0.23.dev0",
|
"instrumentation": "opentelemetry-instrumentation-aiohttp-client==0.23.dev0",
|
||||||
},
|
},
|
||||||
"aiopg": {
|
"aiopg": {
|
||||||
"library": "aiopg >= 0.13.0",
|
"library": "aiopg >= 0.13.0, < 1.3.0",
|
||||||
"instrumentation": "opentelemetry-instrumentation-aiopg==0.23.dev0",
|
"instrumentation": "opentelemetry-instrumentation-aiopg==0.23.dev0",
|
||||||
},
|
},
|
||||||
"asgiref": {
|
"asgiref": {
|
||||||
|
2
tox.ini
2
tox.ini
@ -404,7 +404,7 @@ deps =
|
|||||||
pymongo ~= 3.1
|
pymongo ~= 3.1
|
||||||
PyMySQL ~= 0.10.1
|
PyMySQL ~= 0.10.1
|
||||||
psycopg2 ~= 2.8.4
|
psycopg2 ~= 2.8.4
|
||||||
aiopg >= 0.13.0
|
aiopg >= 0.13.0, < 1.3.0
|
||||||
sqlalchemy ~= 1.3.16
|
sqlalchemy ~= 1.3.16
|
||||||
redis ~= 3.3.11
|
redis ~= 3.3.11
|
||||||
celery[pytest] >= 4.0, < 6.0
|
celery[pytest] >= 4.0, < 6.0
|
||||||
|
Reference in New Issue
Block a user