Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ compile_commands.json
.clangd
Pipfile

# codeql artifacts
_codeql_detected_source_root

# python-package
/dist
*.egg-info
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Secure Processing Unit

module(
name = "spu",
version = "0.9.4",
version = "0.10.0.dev",
compatibility_level = 1,
)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ requires-python = ">=3.10,<3.12"
dynamic = ["version"]

dependencies = [
"numpy<2,>=1.22.0", # FIXME: for SF compatibility
"numpy>=1.24.0",
"cloudpickle>=2.0.0",
"multiprocess>=0.70.12.2",
"cachetools>=5.0.0",
"jax[cpu]==0.6.2",
"jax[cpu]>=0.4.35",
"termcolor>=2.0.0",
]

Expand Down
2 changes: 1 addition & 1 deletion src/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

module(
name = "spulib",
version = "0.9.4",
version = "0.10.0.dev",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion src/libspu/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#define SPU_VERSION "0.9.4"
#define SPU_VERSION "0.10.0.dev"

#include <string_view>

Expand Down
2 changes: 1 addition & 1 deletion update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import re
import os

SPU_VERSION_PREFIX = "0.9.4.dev"
SPU_VERSION_PREFIX = "0.10.0.dev"


def get_today_tag():
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

SPU_VERSION = "0.9.4"
SPU_VERSION = "0.10.0.dev"
Loading