Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
da7190c
Remove Python 3.8 to fix build issues
lresende Jun 23, 2025
d926a91
Update sbr launch
lresende Jun 23, 2025
39cfbb0
Add sbt launch action
lresende Jun 23, 2025
07189ca
Fix pyzmq build issue
lresende Jun 23, 2025
ffc8609
Downgrade gcc
lresende Jun 23, 2025
546f9ea
use python 3.11 for check links
lresende Jun 23, 2025
b158df3
Set python_version to be used with base-setup action
lresende Jun 23, 2025
898c678
downgrade gcc for link check
lresende Jun 23, 2025
cd180c8
update libzmq3
lresende Jun 23, 2025
49fdd11
force python 3.11
lresende Jun 23, 2025
2b7e248
Remove duplicate python config
lresende Jun 23, 2025
d4c3d1e
Another try for python 3.11
lresende Jun 23, 2025
cfc312b
display python version
lresende Jun 23, 2025
0cd05e3
Set python_version env
lresende Jun 23, 2025
6309552
update python with alternative
lresende Jun 23, 2025
96cfe47
Whereis python
lresende Jun 23, 2025
59e2537
update python config
lresende Jun 23, 2025
e6359a2
add apt-python
lresende Jun 23, 2025
8f53b0a
update path with python
lresende Jun 23, 2025
556ffdf
update python env var
lresende Jun 23, 2025
565d017
Update with python
lresende Jun 23, 2025
0f0c726
playing with python_version
lresende Jun 24, 2025
2e7a2c7
Cleanup
lresende Jun 24, 2025
87dcfa5
install python 3.11 on minimal test action
lresende Jun 26, 2025
4a6a392
Use matrix python versions
lresende Jun 26, 2025
595ebcb
cleanup
lresende Jun 26, 2025
97943c8
use py 3.9
lresende Jun 26, 2025
5b7391b
Increase timeouts and enable logs
lresende Jun 26, 2025
1030200
update gitignore
lresende Jun 26, 2025
60502ea
Update itest with debug
lresende Jun 26, 2025
afcaaa3
Use enterprise-gateway-demo:dev-lresende
lresende Jun 26, 2025
c31b621
use official toree release
lresende Jun 26, 2025
9bd5ccf
Revert using enterprise-gateway-demo:dev-lresende
lresende Jun 26, 2025
f20967d
Use maven to download
lresende Jun 28, 2025
8ecdd84
Update failing pi test to add imports
lresende Jun 28, 2025
0ab2821
Remove with matrix.python-version
lresende Jun 28, 2025
cc21ea1
Play with random
lresende Jun 29, 2025
4fbc8f1
uses python 3.9 for integration tests
lresende Jun 29, 2025
08c381a
Fix demo-base docker build
lresende Jun 29, 2025
8bfde27
lint python tags
lresende Jun 29, 2025
ae253bf
uses nick-invision/[email protected]
lresende Jun 29, 2025
6fa1c2c
Use Spark 3.2.4
lresende Jun 29, 2025
ecb09ce
Fix dockerfile
lresende Jun 30, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
python_version: "3.8"
python_version: "3.9"
- uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
- name: Run the unit tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ channels:
- free
dependencies:
- pip
- python=3.8
- python=3.9
- pip:
- -r doc-requirements.txt
2 changes: 1 addition & 1 deletion etc/docker/demo-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- Hadoop 2.7.7
- Apache Spark 2.4.6
- Java 1.8 runtime
- Mini-conda latest (python 3.8) with R packages
- Mini-conda latest (python 3.9) with R packages
- Toree 0.4.0-incubating
- `jovyan` service user, with system users `elyra`, `bob`, and `alice`. The jovyan uid is `1000` to match other jupyter
images.
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"docker>=3.5.0",
"future",
Expand Down
Loading