Skip to content

Commit

Permalink
First release version (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaddeucci authored Jan 20, 2025
1 parent 245f38f commit 85d67d5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,27 @@ jobs:
- name: Execute Static Checks
run: make lint

BuildPackage:
name: Static Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Setup UV
run: pip install uv

- name: Execute Static Checks
run: make build

Publish:
name: Publish
runs-on: ubuntu-latest
needs: [UnitTests, StaticChecks, BuildDocs]
needs: [UnitTests, StaticChecks, BuildDocs, BuildPackage]
environment:
name: pypi
url: https://pypi.org/p/gyjd
Expand Down
2 changes: 1 addition & 1 deletion src/lazy_pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
"LazyStringColumn",
]

__version__ = "0.1.0dev1"
__version__ = "0.1.0"

0 comments on commit 85d67d5

Please sign in to comment.