Spaces:
Running
Running
Commit
·
c195ae3
1
Parent(s):
5935d39
Update publish workflow to use 'build' package and adjust version in pyproject.toml
Browse files- .github/workflows/publish.yml +1 -1
- pyproject.toml +1 -1
.github/workflows/publish.yml
CHANGED
|
@@ -22,7 +22,7 @@ jobs:
|
|
| 22 |
- name: Install dependencies
|
| 23 |
run: |
|
| 24 |
python -m pip install --upgrade pip
|
| 25 |
-
pip install
|
| 26 |
- name: Build package
|
| 27 |
run: |
|
| 28 |
python -m build # Could also be python setup.py sdist bdist_wheel
|
|
|
|
| 22 |
- name: Install dependencies
|
| 23 |
run: |
|
| 24 |
python -m pip install --upgrade pip
|
| 25 |
+
pip install build
|
| 26 |
- name: Build package
|
| 27 |
run: |
|
| 28 |
python -m build # Could also be python setup.py sdist bdist_wheel
|
pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "medvqa"
|
| 7 |
-
version = "0.
|
| 8 |
description = "Your project description here"
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.6"
|
|
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "medvqa"
|
| 7 |
+
version = "0.12"
|
| 8 |
description = "Your project description here"
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.6"
|