Skip to content

Commit

Permalink
Bump versions for v2.5.0a0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmello committed Oct 11, 2023
1 parent cd42ebe commit 1bffe87
Show file tree
Hide file tree
Showing 7 changed files with 7 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.4.0"
__version__ = "2.5.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.4.0",
"globus-compute-sdk==2.5.0a0",
"globus-compute-common==0.3.0a2",
# table printing used in list-endpoints
"texttable>=1.6.4,<2",
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/endpoint/funcx_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.4.0"
__version__ = "2.5.0a0"

VERSION = __version__

Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages, setup

REQUIRES = [
"globus-compute-endpoint==2.4.0",
"globus-compute-endpoint==2.5.0a0",
]

version_ns = {}
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/sdk/funcx/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.4.0"
__version__ = "2.5.0a0"

DEPRECATION_FUNCX = """
The funcX SDK has been renamed to Globus Compute SDK and the new package is
Expand Down
2 changes: 1 addition & 1 deletion compute_funcx/sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup

REQUIRES = [
"globus-compute-sdk==2.4.0",
"globus-compute-sdk==2.5.0a0",
]


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.4.0"
__version__ = "2.5.0a0"


def compare_versions(
Expand Down

0 comments on commit 1bffe87

Please sign in to comment.