Skip to content

Commit

Permalink
new version 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatthieu3 committed May 30, 2023
1 parent d42d80b commit 3ae2508
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* **Fixed** for any bug fixes.
* **Security** in case of vulnerabilities.

## [0.2.3]

### Changed

* ipywidgets >= 8.0.6 install dependency
* ipyaladin compatible jupyterlab 4 and python 3.11

## [0.2.2]

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Additionny, for a jupyterlab usage you will need to:

There is also a conda package that can be installed with:

conda install -c bmatthieu3 ipyaladin==0.2.2
conda install -c bmatthieu3 ipyaladin==0.2.3

## New features corner

Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "ipyaladin" %}
{% set version = "0.2.2" %}
{% set version = "0.2.3" %}

package:
name: "{{ name|lower }}"
Expand Down
6 changes: 3 additions & 3 deletions conda-recipe/readme
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ conda skeleton pypi --extra-specs jupyter-packaging ipyaladin
// change the meta.yaml in ipyaladin/
cp post-link.* pre-unlink.* ipyaladin
conda build ipyaladin --output-folder distrib
conda convert --platform all distrib/linux-64/ipyaladin-0.2.2-py39_0.tar.bz2 -o distrib
conda convert --platform all distrib/linux-64/ipyaladin-0.2.3-py39_0.tar.bz2 -o distrib
anaconda login
anaconda upload distrib/osx-64/ipyaladin-0.2.2-py39_0.tar.bz2
anaconda upload distrib/linux-64/ipyaladin-0.2.2-py39_0.tar.bz2
anaconda upload distrib/osx-64/ipyaladin-0.2.3-py39_0.tar.bz2
anaconda upload distrib/linux-64/ipyaladin-0.2.3-py39_0.tar.bz2

rm -r distrib ipyaladin
4 changes: 2 additions & 2 deletions ipyaladin/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Module version
__version__ = '0.2.2'
__version__ = '0.2.3'

NPM_PACKAGE_RANGE='^0.2.2'
NPM_PACKAGE_RANGE='^0.2.3'
4 changes: 2 additions & 2 deletions js/lib/jupyter-aladin.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export class AladinModel extends DOMWidgetModel {
_model_module : 'ipyaladin',
_view_module : 'ipyaladin',

_model_module_version : '0.2.2',
_view_module_version : '0.2.2',
_model_module_version : '0.2.3',
_view_module_version : '0.2.3',
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipyaladin",
"version": "0.2.2",
"version": "0.2.3",
"description": "ipyaladin",
"author": "Thomas Boch, Jerome Desroziers and Matthieu Baumann",
"license": "BSD-3-Clause",
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Framework :: Jupyter
Framework :: Jupyter :: JupyterLab
Framework :: Jupyter :: JupyterLab :: 3
Framework :: Jupyter :: JupyterLab :: 4
Framework :: Jupyter :: JupyterLab :: Extensions
Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt

Expand All @@ -38,5 +40,5 @@ zip_safe = False
include_package_data = True
packages = find:
install_requires =
ipywidgets>=7.6.0,<9
ipywidgets>=8.0.6,<9
python_requires = >=3.7

0 comments on commit 3ae2508

Please sign in to comment.