Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support spark plugin in python-3.11 and remove requirement.txt #1940

Merged
merged 39 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
214bb7a
Add support spark plugin in python-3.11
pingsutw Nov 7, 2023
d202028
fix tests
pingsutw Nov 7, 2023
084b96b
update dev-requirements.txt
pingsutw Nov 7, 2023
1136d1b
remove requirements.txt
pingsutw Nov 7, 2023
3e361a2
test
pingsutw Nov 7, 2023
619d0e1
fix tests
pingsutw Nov 7, 2023
16ebfff
fix tests
pingsutw Nov 7, 2023
74677c6
fix test
pingsutw Nov 7, 2023
ff7afa7
fix test
pingsutw Nov 7, 2023
db640e0
fix tests
pingsutw Nov 7, 2023
d654f23
nit
pingsutw Nov 7, 2023
a2c826f
nit
pingsutw Nov 7, 2023
5ebe4fd
nit
pingsutw Nov 7, 2023
acdb163
nit
pingsutw Nov 7, 2023
017bbe9
nit
pingsutw Nov 7, 2023
8441db1
update-dbt-core
pingsutw Nov 7, 2023
ab9577e
update-dbt-core
pingsutw Nov 7, 2023
bd81332
fix test
pingsutw Nov 7, 2023
7f7b966
lint
pingsutw Nov 7, 2023
cad4571
update mashumaro
pingsutw Nov 7, 2023
c7fbae0
update mashumaro
pingsutw Nov 7, 2023
97f1c75
test
pingsutw Nov 7, 2023
1292c9a
test
pingsutw Nov 7, 2023
21b1e38
test
pingsutw Nov 7, 2023
f4ca8d8
test
pingsutw Nov 7, 2023
125e5ec
test
pingsutw Nov 7, 2023
785d7b8
test
pingsutw Nov 7, 2023
947445b
test
pingsutw Nov 8, 2023
cf65886
test
pingsutw Nov 8, 2023
51da8db
test
pingsutw Nov 8, 2023
3893a3b
test
pingsutw Nov 8, 2023
005c217
test
pingsutw Nov 8, 2023
fe37b91
test
pingsutw Nov 8, 2023
80ef78b
update ga workflow
pingsutw Nov 8, 2023
2356620
Merge branch 'master' of github.com:flyteorg/flytekit into spark-in-3.11
pingsutw Nov 8, 2023
2c1dad7
Remove vscode requirement.txt
pingsutw Nov 8, 2023
c309c71
Merged master
pingsutw Nov 8, 2023
7165ffe
fix
pingsutw Nov 8, 2023
23cbe15
merged master
pingsutw Nov 14, 2023
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
6 changes: 1 addition & 5 deletions .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,6 @@ jobs:
# https://github.com/numba/numba/issues/8304
- python-version: 3.11
plugin-names: "flytekit-mlflow"
# pyspark 3.4.0 will support python 3.11, which isn't available yet
# Issue tracked in: https://github.com/apache/spark/pull/38987
- python-version: 3.11
plugin-names: "flytekit-spark"
# vaex currently doesn't support python 3.11
- python-version: 3.11
plugin-names: "flytekit-vaex"
Expand All @@ -185,7 +181,7 @@ jobs:
run: |
make setup
cd plugins/${{ matrix.plugin-names }}
pip install -r requirements.txt
pip install .
if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi
pip install -U https://github.com/flyteorg/flytekit/archive/${{ github.sha }}.zip#egg=flytekit
pip freeze
Expand Down
1 change: 1 addition & 0 deletions dev-requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pytest
pytest-asyncio
pytest-cov
pytest-timeout
pytest-mock
mypy<1.7.0
pre-commit
codespell
Expand Down
Loading
Loading