Skip to content

Commit

Permalink
Update core repo sha again
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Sep 5, 2024
1 parent 1928519 commit 1f3ff04
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
pull_request:

env:
CORE_REPO_SHA: 67b33673458459ec8edc07d1054db3395afbfaff
CORE_REPO_SHA: 04e2d7a14dec5822ba78754b2ee2542797f8fe01
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/misc_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
pull_request:

env:
CORE_REPO_SHA: 67b33673458459ec8edc07d1054db3395afbfaff
CORE_REPO_SHA: 04e2d7a14dec5822ba78754b2ee2542797f8fe01
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
pull_request:

env:
CORE_REPO_SHA: 67b33673458459ec8edc07d1054db3395afbfaff
CORE_REPO_SHA: 04e2d7a14dec5822ba78754b2ee2542797f8fe01
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
pull_request:

env:
CORE_REPO_SHA: 67b33673458459ec8edc07d1054db3395afbfaff
CORE_REPO_SHA: 04e2d7a14dec5822ba78754b2ee2542797f8fe01
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w

Expand Down
1 change: 0 additions & 1 deletion opentelemetry-instrumentation/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ classifiers = [
dependencies = [
"opentelemetry-api ~= 1.4",
"wrapt >= 1.0.0, < 2.0.0",
"importlib-metadata >= 6.0, < 8.0",
"packaging >= 18.0",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

from argparse import REMAINDER, ArgumentParser
from importlib.metadata import entry_points
from opentelemetry.util._importlib_metadata import entry_points
from logging import getLogger
from os import environ, execl, getcwd
from os.path import abspath, dirname, pathsep
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from importlib.metadata import EntryPoint, distributions, entry_points
from opentelemetry.util._importlib_metadata import (
EntryPoint, distributions, entry_points
)
from logging import getLogger
from os import environ

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ setenv =
; override CORE_REPO_SHA via env variable when testing other branches/commits than main
; i.e: CORE_REPO_SHA=dde62cebffe519c35875af6d06fae053b3be65ec tox -e <env to test>
; CORE_REPO_SHA={env:CORE_REPO_SHA:main}
CORE_REPO_SHA=67b33673458459ec8edc07d1054db3395afbfaff
CORE_REPO_SHA=04e2d7a14dec5822ba78754b2ee2542797f8fe01
CORE_REPO=git+https://github.com/open-telemetry/opentelemetry-python.git@{env:CORE_REPO_SHA}

commands_pre =
Expand Down

0 comments on commit 1f3ff04

Please sign in to comment.