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
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os:
- ubuntu-latest

Expand Down
4 changes: 3 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Changed

* Move from Rye to [uv](https://astral.sh/uv).
* Move back from mkdocs to Sphinx.
* Move back from mkdocs to Sphinx (with Furo theme).
* Rework documentation structure for improved navigation and search.
* Deploy docs on Read The Docs.
* Allow Numpy 2.
* Support Python 3.13.

### Fixed

Expand Down
26 changes: 25 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,31 @@ netcdf4==1.7.2
# ussa1976
notebook-shim==0.2.4
# via jupyterlab
numpy==1.26.4
numpy==2.0.2 ; python_full_version < '3.10'
# via
# cftime
# contourpy
# joseki
# matplotlib
# netcdf4
# pandas
# scipy
# seaborn
# ussa1976
# xarray
numpy==2.2.6 ; python_full_version == '3.10.*'
# via
# cftime
# contourpy
# joseki
# matplotlib
# netcdf4
# pandas
# scipy
# seaborn
# ussa1976
# xarray
numpy==2.3.2 ; python_full_version >= '3.11'
# via
# cftime
# contourpy
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"click>=8.1.3",
"pint>=0.20.1",
"netCDF4>=1.6.2",
"numpy>=1.22,<2",
"numpy>=1.22",
"pandas>=1.5.2",
"scipy>=1.9.3",
"xarray>=2022.12.0",
Expand All @@ -29,7 +30,7 @@ description = "Reference atmospheric thermophysical profiles for radiative trans
license = { text = "LGPLv3" }
name = "joseki"
readme = "README.md"
requires-python = ">= 3.9,<3.13"
requires-python = ">= 3.9,<3.14"
version = "2.7.0.dev0"

[project.scripts]
Expand Down
Loading