Skip to content

Commit

Permalink
making default version 3.1.2, adding 3.1.1 to the skip versions list …
Browse files Browse the repository at this point in the history
…because it breaks
  • Loading branch information
EvanDietzMorris committed May 23, 2023
1 parent aa31a00 commit 58f4a67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bl_lookup/bl.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
import yaml

# set the default version for the UI and web service calls
default_version = os.environ.get('DEFAULT_VERSION', "v3.1.1")
default_version = os.environ.get('DEFAULT_VERSION', "v3.1.2")

# do not load these versions
# the 3.0.0-v3.1.0 don't have the predicates-mapping.yaml needed to do predicate resolution
skip_versions = ['v1.0.0', 'v1.1.0', 'v1.1.1', 'v1.2.0', 'v1.3.0', 'v2.4.2-alpha-qualifiers', 'deprecated-predicates',
'v3.0.0', 'v3.0.1', 'v3.0.2', 'v3.0.3', 'v3.1.0']
'v3.0.0', 'v3.0.1', 'v3.0.2', 'v3.0.3', 'v3.1.0', 'v3.1.1']


def get_latest_bl_model_release_url() -> str:
Expand Down

0 comments on commit 58f4a67

Please sign in to comment.