File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.8.9
2+ current_version = 1.8.10
33commit = True
44tag = True
55parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
Original file line number Diff line number Diff 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]
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
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 }}
Original file line number Diff line number Diff line change 1- __version__ = "1.8.9 "
1+ __version__ = "1.8.10 "
22semver = "^" + __version__
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 = {
You can’t perform that action at this time.
0 commit comments