File tree Expand file tree Collapse file tree 8 files changed +13
-20
lines changed
Expand file tree Collapse file tree 8 files changed +13
-20
lines changed Original file line number Diff line number Diff line change 3636 - name : Install Dependencies
3737 run : poetry install --no-interaction --no-root
3838
39+ - name : Build Wheels
40+ run : poetry build -f wheel
41+
3942 - name : Publish to PyPI
4043 env :
4144 PYPI_TOKEN : ${{ secrets.PYPI_TOKEN }}
4245 run : |
4346 poetry config pypi-token.pypi $PYPI_TOKEN
44- poetry publish --build
47+ poetry publish --no- build
Original file line number Diff line number Diff line change 11import asyncio
22
3- import spotbee
3+ import spotbeeV2 as spotbee
44
55instance = spotbee .SpotBee ("spotify_client_id" , "spotify_client_secret" )
66
Original file line number Diff line number Diff line change 11import asyncio
22
3- import spotbee
3+ import spotbeeV2 as spotbee
44
55instance = spotbee .SpotBee ("spotify_client_id" , "spotify_client_secret" )
66
Original file line number Diff line number Diff line change 11[tool .poetry ]
2- name = " spotbee "
3- version = " 1 .0.0"
2+ name = " spotbeev2 "
3+ version = " 2 .0.0"
44description = " A simple module that converts Spotify Playlists into a list of Youtube URLs"
55authors = [" Nishant Sapkota <snishant306@gmail.com>" ]
66license = " MIT"
@@ -13,13 +13,14 @@ classifiers = [
1313 " Topic :: Software Development :: Libraries :: Python Modules" ,
1414]
1515
16+
1617[tool .poetry .dependencies ]
1718python = " ^3.9"
1819spotipy = " ^2.19.0"
1920aiohttp = " ^3.7.4"
2021
21- [tool .poetry .dev- dependencies ]
22-
22+ [tool .poetry .group . dev . dependencies ]
23+ pytest = " ^7.0 "
2324
2425[build-system ]
2526requires = [" poetry-core>=1.0.0" ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import asyncio
22
3- from spotbee .spotify import SpotifyHandler
3+ from spotbeeV2 .spotify import SpotifyHandler
44
55from .ytsearch import YoutubeSearch
66
7- __version__ = "1.1 .0"
7+ __version__ = "2.0 .0"
88
99
1010class SpotBee :
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments