File tree Expand file tree Collapse file tree 5 files changed +609
-64
lines changed
Expand file tree Collapse file tree 5 files changed +609
-64
lines changed Original file line number Diff line number Diff line change 2323 - " 3.10"
2424 - " 3.11"
2525 - " 3.12"
26+ - " 3.13"
2627 os :
2728 - ubuntu-latest
2829
Original file line number Diff line number Diff line change @@ -11,9 +11,11 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111### Changed
1212
1313* Move from Rye to [ uv] ( https://astral.sh/uv ) .
14- * Move back from mkdocs to Sphinx.
14+ * Move back from mkdocs to Sphinx (with Furo theme) .
1515* Rework documentation structure for improved navigation and search.
1616* Deploy docs on Read The Docs.
17+ * Allow Numpy 2.
18+ * Support Python 3.13.
1719
1820### Fixed
1921
Original file line number Diff line number Diff line change @@ -265,7 +265,31 @@ netcdf4==1.7.2
265265 # ussa1976
266266notebook-shim == 0.2.4
267267 # via jupyterlab
268- numpy == 1.26.4
268+ numpy == 2.0.2 ; python_full_version < '3.10'
269+ # via
270+ # cftime
271+ # contourpy
272+ # joseki
273+ # matplotlib
274+ # netcdf4
275+ # pandas
276+ # scipy
277+ # seaborn
278+ # ussa1976
279+ # xarray
280+ numpy == 2.2.6 ; python_full_version == '3.10.*'
281+ # via
282+ # cftime
283+ # contourpy
284+ # joseki
285+ # matplotlib
286+ # netcdf4
287+ # pandas
288+ # scipy
289+ # seaborn
290+ # ussa1976
291+ # xarray
292+ numpy == 2.3.2 ; python_full_version >= '3.11'
269293 # via
270294 # cftime
271295 # contourpy
Original file line number Diff line number Diff line change @@ -12,12 +12,13 @@ classifiers = [
1212 " Programming Language :: Python :: 3.10" ,
1313 " Programming Language :: Python :: 3.11" ,
1414 " Programming Language :: Python :: 3.12" ,
15+ " Programming Language :: Python :: 3.13" ,
1516]
1617dependencies = [
1718 " click>=8.1.3" ,
1819 " pint>=0.20.1" ,
1920 " netCDF4>=1.6.2" ,
20- " numpy>=1.22,<2 " ,
21+ " numpy>=1.22" ,
2122 " pandas>=1.5.2" ,
2223 " scipy>=1.9.3" ,
2324 " xarray>=2022.12.0" ,
@@ -29,7 +30,7 @@ description = "Reference atmospheric thermophysical profiles for radiative trans
2930license = { text = " LGPLv3" }
3031name = " joseki"
3132readme = " README.md"
32- requires-python = " >= 3.9,<3.13 "
33+ requires-python = " >= 3.9,<3.14 "
3334version = " 2.7.0.dev0"
3435
3536[project .scripts ]
You can’t perform that action at this time.
0 commit comments