Skip to content

Commit

Permalink
Merge pull request #287 from ianhi/releasing
Browse files Browse the repository at this point in the history
Version Bump + Update release scripts + Trove classifiers
  • Loading branch information
ianhi committed Nov 27, 2021
2 parents be6c8b2 + 6b76a13 commit e01c39e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
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

0 comments on commit e01c39e

Please sign in to comment.