Skip to content

Commit

Permalink
Bump version for alpha release
Browse files Browse the repository at this point in the history
Un-skip test now that multi-user endpoints show as online.
  • Loading branch information
khk-globus committed Mar 8, 2024
1 parent e15cd4c commit a735d25
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion compute_endpoint/globus_compute_endpoint/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.14.0"
__version__ = "2.15.0a0"

# TODO: remove after a `globus-compute-sdk` release
# this is needed because it's imported by `globus-compute-sdk` to do the version check
Expand Down
2 changes: 1 addition & 1 deletion compute_endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
REQUIRES = [
"requests>=2.31.0,<3",
"globus-sdk", # version will be bounded by `globus-compute-sdk`
"globus-compute-sdk==2.14.0",
"globus-compute-sdk==2.15.0a0",
"globus-compute-common==0.3.0",
"globus-identity-mapping==0.3.0",
# table printing used in list-endpoints
Expand Down
2 changes: 1 addition & 1 deletion compute_sdk/globus_compute_sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.14.0"
__version__ = "2.15.0a0"


def compare_versions(
Expand Down
4 changes: 0 additions & 4 deletions smoke_tests/tests/test_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import pytest
from packaging.version import Version


Expand Down Expand Up @@ -31,9 +30,6 @@ def test_simple_function(compute_client):
assert func_uuid is not None, "Invalid function uuid returned"


@pytest.mark.skip(
"Skipping as of 2024-01-11 while we wait for MU tutorial to show as 'online'"
)
def test_ep_status(compute_client, endpoint):
"""Test whether the tutorial EP is online and reporting status"""
response = compute_client.get_endpoint_status(endpoint)
Expand Down

0 comments on commit a735d25

Please sign in to comment.