Skip to content

Commit

Permalink
support python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustinMortier committed Nov 6, 2023
1 parent 3703ce9 commit 2915e0e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10']
python: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Install Poetry
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changelog
.. image:: _static/images/history-solid.svg
:class: awesome-svg

0.6.0
^^^^^^^
Nov 3, 2023

- Support python3.11.
- Fix relative paths issues occuring when the CLI is triggered without a local copy of the repository (via module load on ecFlow).

0.5.15
^^^^^^^
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aprofiles"
version = "0.5.15"
version = "0.6.0"
description = "Analysis of atmospheric profilers measurements"
authors = ["augustinm <[email protected]>"]
license = "GPL-3.0"
Expand All @@ -9,7 +9,7 @@ license = "GPL-3.0"
aprocess = {callable = "aprofiles.cli.aprocess:app", extras = ["cli"]}

[tool.poetry.dependencies]
python = ">=3.9,<3.11"
python = ">=3.9,<=3.11"
matplotlib = "^3.5.0"
miepython = "^2.2.1"
netCDF4 = "^1.5.8"
Expand All @@ -24,7 +24,7 @@ recommonmark = {version = "^0.7.1", optional = true}
typer = {extras = ["all"], version = "^0.7.0", optional = true}
orjson = "^3.6.7"
dask = "^2022.10.2"
numba = "^0.56.4"
numba = "^0.58.0"

[tool.poetry.extras]
docs = ["sphinx", "pydata-sphinx-theme", "recommonmark"]
Expand Down

0 comments on commit 2915e0e

Please sign in to comment.