Skip to content

Commit 6a34be2

Browse files
author
Kevin Ngai
committed
Update release 0.6.0
- update 2025 copyrights - update debian build for python 3.10
1 parent c1fc1b0 commit 6a34be2

File tree

9 files changed

+18
-10
lines changed

9 files changed

+18
-10
lines changed

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ are asked to read the 3rd Party Licenses referenced with those assets.
1919
The MIT License (MIT)
2020
=====================
2121

22-
Copyright (c) 2022 Government of Canada
22+
Copyright (c) 2025 Government of Canada
2323

2424
Permission is hereby granted, free of charge, to any person
2525
obtaining a copy of this software and associated documentation

debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
woudc-extcsv (0.6.0) jammy; urgency=medium
2+
3+
* updated error codes categorized in 100s, 200s, 300s and 400s
4+
* relaxed tables-backfilling rules for OzoneSonde
5+
* other minor fixes and updates related to parsing and validation
6+
7+
-- Kevin Ngai <[email protected]> Fri, 21 Feb 2025 17:33:00 +0000
8+
19
woudc-extcsv (0.5.0) focal; urgency=medium
210

311
* swap in woudc-data-registry extended csv parser

debian/compat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9
1+
13

debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Source: woudc-extcsv
22
Section: python
33
Priority: optional
4-
Maintainer: WOUDC <ec.woudc.ec@canada.ca>
4+
Maintainer: WOUDC <woudc@ec.gc.ca>
55
Build-Depends: debhelper (>= 9), python3, python3-setuptools
66
Standards-Version: 3.9.5
7-
X-Python-Version: >= 3.4
7+
X-Python-Version: >= 3.10
88
Vcs-Git: https://github.com/woudc/woudc-extcsv.git
99

1010
Package: woudc-extcsv

debian/copyright

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
22
Source: https://github.com/woudc/woudc-extcsv
33

44
Files: *
5-
Copyright: Copyright (c) 2016 Government of Canada
5+
Copyright: Copyright (c) 2025 Government of Canada
66
License: Expat
77
Permission is hereby granted, free of charge, to any person
88
obtaining a copy of this software and associated documentation

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# those files. Users are asked to read the 3rd Party Licenses
1919
# referenced with those assets.
2020
#
21-
# Copyright (c) 2022 Government of Canada
21+
# Copyright (c) 2025 Government of Canada
2222
#
2323
# Permission is hereby granted, free of charge, to any person
2424
# obtaining a copy of this software and associated documentation

tests/run_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# those files. Users are asked to read the 3rd Party Licenses
1919
# referenced with those assets.
2020
#
21-
# Copyright (c) 2022 Government of Canada
21+
# Copyright (c) 2025 Government of Canada
2222
#
2323
# Permission is hereby granted, free of charge, to any person
2424
# obtaining a copy of this software and associated documentation

woudc_extcsv/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# those files. Users are asked to read the 3rd Party Licenses
1919
# referenced with those assets.
2020
#
21-
# Copyright (c) 2022 Government of Canada
21+
# Copyright (c) 2025 Government of Canada
2222
#
2323
# Permission is hereby granted, free of charge, to any person
2424
# obtaining a copy of this software and associated documentation
@@ -61,7 +61,7 @@
6161
non_content_line)
6262

6363

64-
__version__ = '0.5.0'
64+
__version__ = '0.6.0'
6565

6666
__dirpath = os.path.dirname(os.path.realpath(__file__))
6767

woudc_extcsv/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# those files. Users are asked to read the 3rd Party Licenses
1919
# referenced with those assets.
2020
#
21-
# Copyright (c) 2022 Government of Canada
21+
# Copyright (c) 2025 Government of Canada
2222
#
2323
# Permission is hereby granted, free of charge, to any person
2424
# obtaining a copy of this software and associated documentation

0 commit comments

Comments
 (0)