Skip to content

Commit

Permalink
chore: bump version to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stochastic-sisyphus authored Dec 10, 2024
1 parent bbcc33c commit 9fbffbe
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,30 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: 'pip'
cache-dependency-path: |
requirements.txt
requirements-dev.txt
- name: Cache build artifacts
uses: actions/cache@v3
with:
path: dist
key: ${{ runner.os }}-build-${{ hashFiles('setup.py', 'setup.cfg') }}
restore-keys: |
${{ runner.os }}-build-
- name: Build release distributions
run: |
# NOTE: put your own distribution build steps here.
python -m pip install build
python -m pip install --upgrade pip build
python -m build
- name: Upload distributions
uses: actions/upload-artifact@v4
with:
name: release-dists
path: dist/
retention-days: 5

pypi-publish:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = advanced-data-processing
version = 0.2.4
version = 0.2.5
description = An advanced data processing pipeline for machine learning workflows
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="advanced-data-processing",
version="0.2.4", # Incremented version
version="0.2.5", # Increment version
author="Vanessa Beck",
author_email="your.email@example.com",
description="An advanced data processing pipeline for machine learning workflows",
Expand Down

0 comments on commit 9fbffbe

Please sign in to comment.