Skip to content

Commit f4937c0

Browse files
Bump version: 1.8.9 → 1.8.10
1 parent 50890f0 commit f4937c0

5 files changed

Lines changed: 19 additions & 14 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.8.9
2+
current_version = 1.8.10
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?

.github/workflows/test.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,18 @@ jobs:
3232
python setup.py generate_source
3333
python setup.py sdist bdist_wheel
3434
35+
- name: Build
36+
run: |
37+
cd js
38+
npm pack
39+
3540
- name: Upload builds
3641
uses: actions/upload-artifact@v3
3742
with:
3843
name: ipyvuetify-dist-${{ github.run_number }}
39-
path: ./dist
44+
path: |
45+
./dist
46+
./js/*.tgz
4047
4148
test:
4249
needs: [build]
@@ -51,7 +58,6 @@ jobs:
5158
- uses: actions/download-artifact@v3
5259
with:
5360
name: ipyvuetify-dist-${{ github.run_number }}
54-
path: ./dist
5561

5662
- name: Install Python
5763
uses: actions/setup-python@v2
@@ -75,7 +81,6 @@ jobs:
7581
- uses: actions/download-artifact@v3
7682
with:
7783
name: ipyvuetify-dist-${{ github.run_number }}
78-
path: ./dist
7984

8085
- name: Install Python
8186
uses: actions/setup-python@v2
@@ -102,13 +107,12 @@ jobs:
102107

103108
release:
104109
if: startsWith(github.event.ref, 'refs/tags/v')
105-
needs: [test, ui-test]
110+
needs: [test]
106111
runs-on: ubuntu-20.04
107112
steps:
108113
- uses: actions/download-artifact@v3
109114
with:
110115
name: ipyvuetify-dist-${{ github.run_number }}
111-
path: ./dist
112116

113117
- name: Install node
114118
uses: actions/setup-node@v1
@@ -137,7 +141,7 @@ jobs:
137141
cd js
138142
echo $PRE_RELEASE
139143
if [[ $PRE_RELEASE == "true" ]]; then export TAG="next"; else export TAG="latest"; fi
140-
npm publish --tag ${TAG} --access public
144+
npm publish --tag ${TAG} --access public *.tgz
141145
env:
142146
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
143147
PRE_RELEASE: ${{ github.event.release.prerelease }}

ipyvuetify/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.8.9"
1+
__version__ = "1.8.10"
22
semver = "^" + __version__

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-vuetify",
3-
"version": "1.8.9",
3+
"version": "1.8.10",
44
"description": "Jupyter widgets based on vuetify UI components",
55
"license": "MIT",
66
"author": "Mario Buikhuizen, Maarten Breddels",

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,12 @@ def run(self):
185185
install_requires=[
186186
"ipyvue>=1.7,<2",
187187
],
188-
extras_require={
189-
"test": [
190-
"solara[pytest] @ https://github.com/widgetti/solara/archive/refs/heads/feat_test_ipywidgets.zip",
191-
]
192-
},
188+
# we need to use the released version
189+
# extras_require={
190+
# "test": [
191+
# "solara[pytest] @ https://github.com/widgetti/solara/archive/refs/heads/feat_test_ipywidgets.zip",
192+
# ]
193+
# },
193194
packages=find_packages(exclude=["generate_source"]),
194195
zip_safe=False,
195196
cmdclass={

0 commit comments

Comments
 (0)