File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 2626 - uses : actions/cache@v4
2727 with :
2828 path : ~/.cache/pip
29- key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py ') }}
29+ key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('pyproject.toml ') }}
3030 restore-keys : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
3131 - uses : actions/checkout@v4
3232 with :
3737 with :
3838 python-version : ${{ matrix.PYTHON_VERSION }}
3939 architecture : " x64"
40- - run : python -m pip install --upgrade pip setuptools wheel twine
40+ - run : python -m pip install --upgrade pip build twine
4141 - name : Build and publish python-language-server
4242 run : |
43- python setup.py bdist_wheel --universal
44- python setup.py sdist
43+ python -m build
4544 python -m twine check dist/*
4645 python -m twine upload dist/*
You can’t perform that action at this time.
0 commit comments