Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install packaging setuptools twine wheel
pip install twine wheel build
- name: Publish the Python package
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
python -m build
twine upload dist/ipycytoscape*
- name: Publish the NPM package
run: |
echo $PRE_RELEASE
Expand Down
2 changes: 1 addition & 1 deletion ipycytoscape/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
#
# The full license is in the file LICENSE, distributed with this software.

version_info = (1, 2, 2)
version_info = (1, 3, 0)
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyter-cytoscape",
"version": "1.2.2",
"version": "1.3.0",
"description": "A Cytoscape Jupyter Widget",
"keywords": [
"jupyter",
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Jupyter",
],
include_package_data=True,
Expand Down