Skip to content

Commit

Permalink
Bump version to v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
polyaxon-ci committed Nov 5, 2024
1 parent c9a275c commit b2bfa3a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
62 changes: 31 additions & 31 deletions .github/workflows/haupt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,50 @@ name: Tests
on:
push:
branches:
- master
- testing
- master
- testing
jobs:
library:
# if: github.event.comment.body == 'test core'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- run: |
pip install -U haupt
- run: |
pip install -U haupt
local-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
which python
python -m pip install --upgrade pip
- name: Install test dependencies
run: pip install -r haupt/requirements/test.txt
- name: Install platform test dependencies
run: pip install -r haupt/requirements/platform-test.txt
- name: Install dev dependencies
run: pip install -r haupt/requirements/dev.txt
- name: Install master dependencies
run: pip install -r haupt/requirements/master.txt
- name: Install required dependencies
run: pip install -r haupt/requirements/requirements.txt
- name: Install platform dependencies
run: pip install -r haupt/requirements/platform.txt
- name: Install streams dependencies
run: pip install -r haupt/requirements/streams.txt
- name: Test with sqlite locally
run: cmd/test local-sqlite
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
which python
python -m pip install --upgrade pip
- name: Install test dependencies
run: pip install -r haupt/requirements/test.txt
- name: Install platform test dependencies
run: pip install -r haupt/requirements/platform-test.txt
- name: Install dev dependencies
run: pip install -r haupt/requirements/dev.txt
- name: Install master dependencies
run: pip install -r haupt/requirements/master.txt
- name: Install required dependencies
run: pip install -r haupt/requirements/requirements.txt
- name: Install platform dependencies
run: pip install -r haupt/requirements/platform.txt
- name: Install streams dependencies
run: pip install -r haupt/requirements/streams.txt
- name: Test with sqlite locally
run: cmd/test local-sqlite
container-sqlite-tests:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion haupt/haupt/pkg.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = "haupt"
VERSION = "2.5.0"
VERSION = "2.5.1"
DESC = (
"Lineage metadata API, artifacts streams, sandbox, ML-API, and spaces for Polyaxon."
)
Expand Down

0 comments on commit b2bfa3a

Please sign in to comment.