File tree Expand file tree Collapse file tree 6 files changed +244
-246
lines changed Expand file tree Collapse file tree 6 files changed +244
-246
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ jobs:
21
21
- name : Install dependencies
22
22
run : |
23
23
pipenv install
24
- pipenv run pip3 install setuptools wheel twine
24
+ pipenv run pip3 install build setuptools wheel twine
25
25
- name : Build and publish
26
26
env :
27
27
TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
28
28
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
29
29
run : |
30
- pipenv run python3 setup.py sdist bdist_wheel
30
+ pipenv run python3 -m build
31
31
pipenv run twine upload dist/*
Original file line number Diff line number Diff line change @@ -81,20 +81,20 @@ jobs:
81
81
- name : Install dependencies
82
82
run : pipenv install --dev --python=${{ matrix.python-version }}
83
83
- name : black
84
- run : pipenv run black meilisearch tests setup.py --check
84
+ run : pipenv run black meilisearch tests --check
85
85
86
86
isort :
87
87
name : isort
88
88
runs-on : ubuntu-latest
89
89
steps :
90
90
- uses : actions/checkout@v3
91
91
- name : Set up Python 3.9
92
- uses : actions/setup-python@v2
92
+ uses : actions/setup-python@v4
93
93
with :
94
94
python-version : 3.9
95
95
- name : Install pipenv
96
96
uses : dschep/install-pipenv-action@v1
97
97
- name : Install dependencies
98
98
run : pipenv install --dev --python=${{ matrix.python-version }}
99
99
- name : isort
100
- run : pipenv run isort meilisearch tests setup.py --check-only
100
+ run : pipenv run isort meilisearch tests --check-only
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ types-requests = "*"
15
15
black = " *"
16
16
isort = " *"
17
17
importlib_metadata = {version = " *" , markers =" python_version < '3.8'" }
18
- zipp = {version = " ==3.14 .0" , markers =" python_version < '3.8'" }
18
+ zipp = {version = " ==3.15 .0" , markers =" python_version < '3.8'" }
19
19
exceptiongroup = {version = " *" , markers =" python_version < '3.11'" }
20
20
tomli = {version = " *" , markers =" python_version < '3.11'" }
21
21
wrapt = {version = " *" , markers =" python_version < '3.11'" }
You can’t perform that action at this time.
0 commit comments