Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUFR master table version udpate #140

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 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 Down Expand Up @@ -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