Skip to content

Commit

Permalink
Bump version: 1.8.9 → 1.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Apr 18, 2023
1 parent 50890f0 commit f4937c0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.8.9
current_version = 1.8.10
commit = True
tag = True
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,18 @@ jobs:
python setup.py generate_source
python setup.py sdist bdist_wheel
- name: Build
run: |
cd js
npm pack
- name: Upload builds
uses: actions/upload-artifact@v3
with:
name: ipyvuetify-dist-${{ github.run_number }}
path: ./dist
path: |
./dist
./js/*.tgz
test:
needs: [build]
Expand All @@ -51,7 +58,6 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: ipyvuetify-dist-${{ github.run_number }}
path: ./dist

- name: Install Python
uses: actions/setup-python@v2
Expand All @@ -75,7 +81,6 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: ipyvuetify-dist-${{ github.run_number }}
path: ./dist

- name: Install Python
uses: actions/setup-python@v2
Expand All @@ -102,13 +107,12 @@ jobs:

release:
if: startsWith(github.event.ref, 'refs/tags/v')
needs: [test, ui-test]
needs: [test]
runs-on: ubuntu-20.04
steps:
- uses: actions/download-artifact@v3
with:
name: ipyvuetify-dist-${{ github.run_number }}
path: ./dist

- name: Install node
uses: actions/setup-node@v1
Expand Down Expand Up @@ -137,7 +141,7 @@ jobs:
cd js
echo $PRE_RELEASE
if [[ $PRE_RELEASE == "true" ]]; then export TAG="next"; else export TAG="latest"; fi
npm publish --tag ${TAG} --access public
npm publish --tag ${TAG} --access public *.tgz
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
PRE_RELEASE: ${{ github.event.release.prerelease }}
2 changes: 1 addition & 1 deletion ipyvuetify/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.8.9"
__version__ = "1.8.10"
semver = "^" + __version__
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyter-vuetify",
"version": "1.8.9",
"version": "1.8.10",
"description": "Jupyter widgets based on vuetify UI components",
"license": "MIT",
"author": "Mario Buikhuizen, Maarten Breddels",
Expand Down
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,12 @@ def run(self):
install_requires=[
"ipyvue>=1.7,<2",
],
extras_require={
"test": [
"solara[pytest] @ https://github.com/widgetti/solara/archive/refs/heads/feat_test_ipywidgets.zip",
]
},
# we need to use the released version
# extras_require={
# "test": [
# "solara[pytest] @ https://github.com/widgetti/solara/archive/refs/heads/feat_test_ipywidgets.zip",
# ]
# },
packages=find_packages(exclude=["generate_source"]),
zip_safe=False,
cmdclass={
Expand Down

0 comments on commit f4937c0

Please sign in to comment.