Skip to content

Commit

Permalink
Update to BUFR master table version supported.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-i-berry committed Nov 21, 2024
1 parent 12c7f63 commit a853b61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions csv2bufr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#
###############################################################################

__version__ = '0.8.3'
__version__ = '0.8.dev4'

import csv
from datetime import timezone, datetime
Expand All @@ -31,7 +31,7 @@
import threading
from typing import Any, Iterator, Union

from eccodes import (codes_bufr_new_from_samples,
from eccodes import (codes_bufr_new_from_samples, codes_definition_path,
codes_set_array, codes_set, codes_get_native_type,
codes_write, codes_release, codes_get,
codes_bufr_keys_iterator_new,
Expand All @@ -57,7 +57,7 @@

LOGGER = logging.getLogger(__name__)

BUFR_TABLE_VERSION = 38 # default BUFR table version
BUFR_TABLE_VERSION = 42 # default BUFR table version
# list of BUFR attributes
ATTRIBUTES = ['code', 'units', 'scale', 'reference', 'width']
# list of ecCodes keys for BUFR headers
Expand Down

0 comments on commit a853b61

Please sign in to comment.