Skip to content

Commit 93548ad

Browse files
committed
2024 => 2025
1 parent dd478af commit 93548ad

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

PyCO2SYS/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
#
44
# This program is free software: you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License as published by

PyCO2SYS/bio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Seawater properties with primarily biological consequences."""
44

55

PyCO2SYS/buffers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Calculate various buffer factors of the marine carbonate system."""
44

55
from jax import numpy as np

PyCO2SYS/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Define universal constants."""
44

55
from jax import numpy as np

PyCO2SYS/convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""
44
PyCO2SYS.convert
55
================

PyCO2SYS/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
import itertools
44
import warnings
55
from collections import UserDict

PyCO2SYS/equilibria/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Calculate equilibrium constants from temperature, salinity and pressure."""
44

55
from . import p1atm, pcx

PyCO2SYS/equilibria/p1atm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""
44
PyCO2SYS.equilibria.p1atm
55
=========================

PyCO2SYS/equilibria/pcx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""
44
PyCO2SYS.equilibria.pcx
55
=======================

PyCO2SYS/gas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""
44
PyCO2SYS.gas
55
============

PyCO2SYS/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Define metadata about PyCO2SYS."""
44

55
import jax

PyCO2SYS/salts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""
44
PyCO2SYS.salts
55
==============

PyCO2SYS/solubility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Calculate saturation states of soluble solids."""
44

55
from jax import numpy as np

PyCO2SYS/solve/inorganic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Calculate one new carbonate system variable from various input pairs."""
44

55
import warnings

PyCO2SYS/uncertainty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
"""Define standard uncertainties for propagation."""
44

55
# Define default uncertainties in pK values following OEDG18

PyCO2SYS/upsilon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyCO2SYS: marine carbonate system calculations in Python.
2-
# Copyright (C) 2020--2024 Matthew P. Humphreys et al. (GNU GPLv3)
2+
# Copyright (C) 2020--2025 Matthew P. Humphreys et al. (GNU GPLv3)
33
from jax import numpy as np
44

55
from . import constants

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
site_name: PyCO2SYS
33
site_author: Matthew P. Humphreys
44
site_description: Marine carbonate system calculations in Python
5-
copyright: Copyright © 2020-2024 Matthew P. Humphreys (GNU GPLv3)
5+
copyright: Copyright © 2020-2025 Matthew P. Humphreys (GNU GPLv3)
66

77
# Github repo info
88
repo_name: mvdh7/PyCO2SYS

0 commit comments

Comments
 (0)