Merge pull request #3 from yakhyo/feat

chore: Bump to version 0.1.4
This commit is contained in:
Yakhyokhuja Valikhujaev
2024-11-21 15:19:42 +09:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@@ -3,12 +3,12 @@ name: Build, Test, and Publish
on:
push:
branches:
- main
- main # Trigger on pushes to main
tags:
- "v*.*.*" # Trigger publish on version tags
pull_request:
branches:
- main
- main # Trigger checks on pull requests to main
jobs:
build:
@@ -33,12 +33,12 @@ jobs:
python -m pip install .[dev] || pip install pytest # Use extras_require if available
- name: Run Tests
run: |
pytest
run: pytest
publish:
runs-on: ubuntu-latest
needs: build # Publish only if tests pass
if: github.event_name == 'push' && github.ref == 'refs/heads/main' # Trigger only on pushes to main
steps:
- name: Checkout code

View File

@@ -9,7 +9,7 @@ if os.path.exists("README.md"):
setup(
name="uniface",
version="0.1.3",
version="0.1.4",
packages=find_packages(),
install_requires=[
"numpy",

View File

@@ -11,5 +11,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.1.3"
__version__ = "0.1.4"
__author__ = "Yakhyokhuja Valikhujaev"