Skip to content

Commit de93627

Browse files
committed
maint: prepare version 0.19.1
1 parent c55aef6 commit de93627

7 files changed

Lines changed: 11 additions & 9 deletions

File tree

.github/workflows/cov-and-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# Run test with coverage and doctests
4141
python -m pytest -v -s --doctest-modules python/mocpy --cov-report=term --cov=python/mocpy
4242
# Install dependencies needed to build the docs
43-
pip install .[docs]
43+
pip install .[docs,plots]
4444
sudo apt-get install pandoc
4545
# Compile the docs and run the test examples
4646
cd ./docs

.github/workflows/notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Build and install mocpy
2929
maturin develop --release
3030
# Install pytest-cov, needed to test with coverage
31-
pip install .[notebooks]
31+
pip install .[notebooks,plots]
3232
# Add the mocpy-env environnement as a jupyter kernel
3333
python -m ipykernel install --user --name mocpy-env
3434
# Run the notebooks under that kernel

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
pip install --upgrade pip
3838
pip install maturin
3939
maturin develop --release
40-
pip install .[dev]
40+
pip install .[dev,plots]
4141
python -m pytest
4242
done
4343
@@ -69,7 +69,7 @@ jobs:
6969
maturin build --release --target universal2-apple-darwin
7070
maturin develop --release
7171
# Install dependencies
72-
pip install .[dev]
72+
pip install .[dev,plots]
7373
# Run tests
7474
python -m pytest
7575
@@ -99,7 +99,7 @@ jobs:
9999
pip install maturin
100100
maturin develop --release
101101
# Install dependencies
102-
pip install .[dev]
102+
pip install .[dev,plots]
103103
# Run tests
104104
python -m pytest -v
105105
deactivate

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
## [unreleased]
1818

19+
## [0.19.1]
20+
1921
### Fixed
2022

2123
* `cdshealpix` and `matplotlib` are now truly optional [#201]

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "MOCPy"
3-
version = "0.19.0"
3+
version = "0.19.1"
44
authors = [
55
"Matthieu Baumann <matthieu.baumann@astro.unistra.fr>",
66
"Thomas Boch <thomas.boch@astro.unistra.fr>",

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"dateModified": "2023-12-04",
1010
"issueTracker": "https://github.com/cds-astro/mocpy/issues",
1111
"name": "MOCpy",
12-
"version": "0.19.0",
13-
"softwareVersion": "0.19.0",
12+
"version": "0.19.1",
13+
"softwareVersion": "0.19.1",
1414
"description": "Python library to easily create and manipulate MOCs (Multi-Order Coverage maps)",
1515
"applicationCategory": ["Astronomy", "Science"],
1616
"funding": "ESCAPE 824064, ASTERICS 653477",

python/mocpy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.19.0"
1+
__version__ = "0.19.1"

0 commit comments

Comments
 (0)