Skip to content

Commit

Permalink
Merge pull request #145 from roocs/prepare-release-0.6.0
Browse files Browse the repository at this point in the history
Prepare release 0.6.0
  • Loading branch information
cehbrecht committed Nov 3, 2023
2 parents 79e9252 + aa111ef commit 8781b58
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 17 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -33,7 +33,3 @@ jobs:
- name: Test with pytest
run: |
pytest -v -m "not online" tests
# - name: Test monitor notebooks with pytest
# run: |
# pytest -v --nbval notebooks/monitor
# if: matrix.python-version == 3.6
18 changes: 18 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Version History
===============

v0.6.0 (2023-11-03)
-------------------

New Features
^^^^^^^^^^^^

* Added operator and notebook for `Regrid` (#133).
* Added operator and notebook for `WeightedAverage` (#132).

Changes
^^^^^^^

* Support only Python >= 3.9
* Added cf-xarray dependency (#143)
* Updated to birdy >= 0.8.2 (#124)
* Added notebook for atlas
* Updated notebooks (subset, cmip6-decadal, intake).

v0.5.0 (2022-09-28)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
# The short X.Y version.
version = ""
# The full version, including alpha/beta/rc tags.
release = "0.5.0"
release = "0.6.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
9 changes: 4 additions & 5 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ dependencies:
- netcdf4
- xarray>=0.16
- cf_xarray
# tests
#- pytest
#- flake8
## used for notebooks on binder
# cdo
- python-cdo
- cdo
Expand All @@ -29,8 +33,3 @@ dependencies:
# vis
- hvplot
- bokeh
# tests
#- pytest
#- flake8
- pip:
- geoip2nation
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.6.0
commit = True
tag = True

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__contact__ = "ehbrecht@dkrz.de"
__copyright__ = "Copyright 2018 United Kingdom Research and Innovation"
__license__ = "BSD - see LICENSE file in top-level package directory"
__version__ = "0.5.0"
__version__ = "0.6.0"

# One strategy for storing the overall version is to put it in the top-level
# package's __init__ but Nb. __init__.py files are not needed to declare
Expand Down Expand Up @@ -53,9 +53,9 @@
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
Expand All @@ -67,7 +67,7 @@
license=__license__,
# This qualifier can be used to selectively exclude Python versions -
# in this case early Python 2 and 3 releases
python_requires=">=3.6.0",
python_requires=">=3.9.0",
entry_points={
"console_scripts": [
"rooki=rooki.cli:main",
Expand Down

0 comments on commit 8781b58

Please sign in to comment.