Skip to content

Commit 9174981

Browse files
authored
Merge branch 'main' into fix-ruff-lint
2 parents 56cae10 + 07586bd commit 9174981

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

.github/containers/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,8 @@ RUN mkdir -p "${PIPX_BIN_DIR}" && \
117117
pyenv exec pipx install --global "${line}"; \
118118
done </tmp/requirements-tools.txt && \
119119
rm /tmp/requirements-tools.txt
120+
121+
# Inject compatibile dependencies for tox
122+
COPY ./requirements-tox.txt /tmp/requirements-tox.txt
123+
RUN pipx inject --force tox -r /tmp/requirements-tox.txt && \
124+
rm /tmp/requirements-tox.txt
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
virtualenv==20.26.6
2+
pip==24.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pip
1+
pip==24.0
22
pipx
33
setuptools
4-
virtualenv
4+
virtualenv==20.26.6
55
wheel

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ include newrelic/version.txt
66
include newrelic/newrelic.ini
77
include newrelic/common/cacert.pem
88
include newrelic/packages/wrapt/LICENSE
9-
include newrelic/packages/wrapt/README
109
include newrelic/packages/urllib3/LICENSE.txt
1110
include newrelic/packages/isort/LICENSE
1211
include newrelic/packages/opentelemetry_proto/LICENSE.txt

tox.ini

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,10 @@ envlist =
4848
elasticsearchserver07-datastore_elasticsearch-{py37,py38,py39,py310,py311,py312,py313,pypy310}-elasticsearch07,
4949
elasticsearchserver08-datastore_elasticsearch-{py37,py38,py39,py310,py311,py312,py313,pypy310}-elasticsearch08,
5050
firestore-datastore_firestore-{py37,py38,py39,py310,py311,py312,py313},
51-
grpc-framework_grpc-{py38,py39,py310,py311,py312,py313}-grpclatest,
51+
grpc-framework_grpc-{py39,py310,py311,py312,py313}-grpclatest,
5252
kafka-messagebroker_confluentkafka-py39-confluentkafka{0108,0107,0106},
5353
kafka-messagebroker_confluentkafka-{py37,py38,py39,py310,py311,py312,py313}-confluentkafkalatest,
54-
kafka-messagebroker_kafkapython-py38-kafkapython{020001,020000},
55-
kafka-messagebroker_kafkapython-{py37,py38,pypy310}-kafkapythonlatest,
54+
kafka-messagebroker_kafkapython-{py37,py38,py39,py310,py311,py312,py313,pypy310}-kafkapythonlatest,
5655
kafka-messagebroker_kafkapython-{py38,py39,py310,py311,py312,py313,pypy310}-kafkapythonnglatest,
5756
memcached-datastore_aiomcache-{py38,py39,py310,py311,py312,py313},
5857
memcached-datastore_bmemcached-{py37,py38,py39,py310,py311,py312,py313},
@@ -414,9 +413,8 @@ deps =
414413
messagebroker_confluentkafka-confluentkafka0107: confluent-kafka<1.8
415414
messagebroker_confluentkafka-confluentkafka0106: confluent-kafka<1.7
416415
messagebroker_kafkapython-kafkapythonnglatest: kafka-python-ng
417-
messagebroker_kafkapython-kafkapythonlatest: kafka-python
418-
messagebroker_kafkapython-kafkapython020001: kafka-python<2.0.2
419-
messagebroker_kafkapython-kafkapython020000: kafka-python<2.0.1
416+
# TODO: Pinned to 2.0 for now, fix tests later
417+
messagebroker_kafkapython-kafkapythonlatest: kafka-python<2.1
420418
template_genshi-genshilatest: genshi
421419
template_jinja2-jinja2latest: Jinja2
422420
template_jinja2-jinja2030103: Jinja2<3.1.4

0 commit comments

Comments
 (0)