Commit c0f08aa
authored
chore: update tox OTel test deps to 1.40/0.61 and include tox.ini in nightly dependency updates (#693)
*Description of changes:*
Currently builds are running with the following warning:
```
opentelemetry-sdk 1.40.0 requires opentelemetry-api==1.40.0, but you have opentelemetry-api 1.39.1 which is incompatible.
opentelemetry-semantic-conventions 0.61b0 requires opentelemetry-api==1.40.0, but you have opentelemetry-api 1.39.1 which is incompatible.
opentelemetry-test-utils 0.60b1 requires opentelemetry-sdk==1.39.1, but you have opentelemetry-sdk 1.40.0 which is incompatible.
```
Update tox.ini OTel test deps to 1.40/0.61 and auto-update tox repo
branches in nightly builds, validated with the following script:
```
python -c "
from scripts.update_dependencies import update_file_dependencies
import shutil
shutil.copy('tox.ini', '/tmp/tox_test.ini')
result = update_file_dependencies('/tmp/tox_test.ini', '1.41.0', '0.62b0', {})
print(f'Updated: {result}')
with open('/tmp/tox_test.ini') as f:
for line in f:
if 'CORE_REPO=' in line or 'CONTRIB_REPO=' in line:
print(line.strip())
Updated /tmp/tox_test.ini
Updated: True
CORE_REPO=git+https://github.com/open-telemetry/opentelemetry-python.git@release/v1.41.x-0.62bx
CONTRIB_REPO=git+https://github.com/open-telemetry/opentelemetry-python-contrib.git@release/v1.41.x-0.62bx
```
By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.1 parent 831c772 commit c0f08aa
2 files changed
Lines changed: 41 additions & 26 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
81 | 108 | | |
82 | 109 | | |
83 | 110 | | |
| |||
86 | 113 | | |
87 | 114 | | |
88 | 115 | | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
107 | 122 | | |
108 | 123 | | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
114 | 129 | | |
115 | 130 | | |
116 | 131 | | |
| |||
149 | 164 | | |
150 | 165 | | |
151 | 166 | | |
| 167 | + | |
152 | 168 | | |
153 | 169 | | |
154 | 170 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
31 | | - | |
32 | | - | |
| 30 | + | |
| 31 | + | |
33 | 32 | | |
34 | 33 | | |
35 | 34 | | |
| |||
0 commit comments