Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
fail-fast: false
matrix:
include:
- python-version: "3.10"
pixi-env: py310dev
- python-version: "3.11"
pixi-env: py311dev
- python-version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018-2025, UT-BATTELLE, LLC
Copyright (c) 2018-2026, UT-BATTELLE, LLC
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ dependencies:
- pybtex>=0.25.1
- ruamel.yaml>=0.19.1
- scikit-learn>=1.7.2
- scipy>=1.15.3
- scipy>=1.17.0
- seaborn>=0.13.2
- xarray>=2025.6.1
2 changes: 1 addition & 1 deletion livvext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
Storage for global variables. These are set upon startup in the options module
"""

__version_info__ = (1, 0, 0)
__version_info__ = (1, 0, 1)
__version__ = ".".join(str(vi) for vi in __version_info__)
28 changes: 15 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# coding=utf-8
# Copyright (c) 2018-2025 UT-BATTELLE, LLC
# Copyright (c) 2018-2026 UT-BATTELLE, LLC
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -37,14 +37,14 @@ authors = [
{ name = "Joseph H. Kennedy", email = "kennedyjh@ornl.gov" },
]
name = "LIVVext"
requires-python = ">=3.10"
description = "Extensions for the land ice verification and validation toolkit (Livvkit EXtensions)"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { text = "BSD-3-Clause" }
requires-python = ">=3.11"
description = "Extensions for the land ice verification and validation toolkit (LIVVkit EXTensions)"
readme = { file = "README.md", content-type = "text/markdown" }
license = "BSD-3-Clause"

dependencies = [
"numpy>=2.2.6",
"scipy>=1.15.3",
"scipy>=1.17.0",
"xarray>=2025.6.1",
"dask>=2026.1.2",
"seaborn>=0.13.2",
Expand All @@ -68,11 +68,9 @@ classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand All @@ -81,7 +79,15 @@ classifiers = [
dynamic = ["version"]

[tool.setuptools]
packages = ["livvext", "livvext.smb", "livvext.energy"]
packages = [
"livvext",
"livvext.smb",
"livvext.smb.smb",
"livvext.energy",
"livvext.example",
"livvext.postproc",
"livvext.postproc.e3sm",
]

[tool.setuptools.dynamic]
version = { attr = "livvext.__version__" }
Expand Down Expand Up @@ -113,9 +119,6 @@ ruff = "*"
pre-commit = "*"

# Different Python versions for CI testing
[tool.pixi.feature.py310dev.dependencies]
python = "3.10.*"

[tool.pixi.feature.py311dev.dependencies]
python = "3.11.*"

Expand All @@ -131,7 +134,6 @@ python = "3.14.*"
[tool.pixi.environments]
default = { solve-group = "default" }
dev = ["dev"]
py310dev = ["py310dev", "dev"]
py311dev = ["py311dev", "dev"]
py312dev = ["py312dev", "dev"]
py313dev = ["py313dev", "dev"]
Expand Down