Skip to content

Commit 22b695a

Browse files
committed
small changes
1 parent 5769163 commit 22b695a

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/publish.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ jobs:
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip
19-
pip install setuptools wheel twine
19+
pip install --upgrade setuptools
20+
pip install --upgrade build
21+
pip install --upgrade twine
2022
pip install -r requirements.txt
2123
- name: Build and publish
2224
env:
2325
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2426
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2527
run: |
26-
python setup.py sdist
27-
twine upload dist/*
28+
python -m build
29+
python -m twine upload dist/*

fastvector/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.0.0"
1+
__version__ = "5.1.0"

requirements-dev.txt

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
--requirement requirements.txt
33

44
setuptools>=67.7.1
5+
build>=0.10.0
6+
twine>=4.0.0
57

68
# Testing
79
pytest

0 commit comments

Comments
 (0)