Skip to content
Open
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
2 changes: 1 addition & 1 deletion codalab/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

# Increment this on master when ready to cut a release.
# http://semver.org/
CODALAB_VERSION = '1.7.1'
CODALAB_VERSION = '1.7.2'
BINARY_PLACEHOLDER = '<binary>'
URLOPEN_TIMEOUT_SECONDS = int(os.environ.get('CODALAB_URLOPEN_TIMEOUT_SECONDS', 5 * 60))

Expand Down
3 changes: 2 additions & 1 deletion codalab/migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import multiprocessing
from functools import partial
import time
from typing import Dict, List
from collections import defaultdict
import json
import numpy as np
Expand Down Expand Up @@ -48,7 +49,7 @@ def __init__(self, target_store_name, change_db, delete) -> None:
) = (
self.skipped_delete_path_dne
) = self.path_exception_cnt = self.error_cnt = self.success_cnt = 0
self.times = defaultdict(list)
self.times: Dict[str, List[float]] = defaultdict(list)

def setUp(self):
self.codalab_manager = CodaLabManager()
Expand Down
2 changes: 1 addition & 1 deletion docs/REST-API-Reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# REST API Reference

_version 1.7.1_
_version 1.7.2_

This reference and the REST API itself is still under heavy development and is
subject to change at any time. Feedback through our GitHub issues is appreciated!
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Should match codalab/common.py#CODALAB_VERSION
export const CODALAB_VERSION = '1.7.1';
export const CODALAB_VERSION = '1.7.2';

// Name Regex to match the backend in spec_utils.py
export const NAME_REGEX = /^[a-zA-Z_][a-zA-Z0-9_.-]*$/i;
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


# should match codalab/common.py#CODALAB_VERSION
CODALAB_VERSION = "1.7.1"
CODALAB_VERSION = "1.7.2"


class Install(install):
Expand Down