Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 2.1.1
version: 2.1.3
virtualenvs-create: true
virtualenvs-in-project: false
installer-parallel: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@ jobs:
uses: actions/checkout@v4

- name: Set up JDK
if: startsWith(github.ref, 'refs/tags/')
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'zulu'

- name: Set up Python
if: startsWith(github.ref, 'refs/tags/')
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Set up Poetry
if: startsWith(github.ref, 'refs/tags/')
uses: snok/install-poetry@v1

with:
version: 2.1.3
virtualenvs-create: true
virtualenvs-in-project: false
installer-parallel: true

- name: Build GraphFrames python
if: startsWith(github.ref, 'refs/tags/')
working-directory: python
run: |
poetry version ${{ github.ref_name }}
poetry build

- name: PyPi publish
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ spark-warehouse

# db-connect targets
graphframes-connect-databricks/*

# Workspace
workspace
1 change: 1 addition & 0 deletions python/graphframes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from .graphframe import GraphFrame

__all__ = ["GraphFrame"]
__version__ = "0.0.0"
Loading