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

Drop python 3.8, add 3.11 & 3.12 to testing #1143

Merged
merged 35 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
95461c3
Initial python version bump in CI
charlesbluca May 10, 2023
5060ae4
Add libprotobuf to GPU CI environments
charlesbluca May 10, 2023
eb0d13b
Replace mentions of old env files
charlesbluca May 10, 2023
29e56e0
Merge remote-tracking branch 'origin/main' into drop-py38
charlesbluca May 11, 2023
e454833
Remove strict channel priority to try to unblock env solves?
charlesbluca May 11, 2023
231bbbf
Establish minimum version for mlflow
charlesbluca May 11, 2023
70c7302
Revert "Remove strict channel priority to try to unblock env solves?"
charlesbluca May 11, 2023
2783fc9
Try strict channel priority without nodefaults
charlesbluca May 11, 2023
3b11f9c
Bump mlflow min version to fix windows failures
charlesbluca May 11, 2023
c909c94
Build python 3.11 wheels
charlesbluca May 18, 2023
1b48ab8
Run wheel builds in PR test
charlesbluca May 18, 2023
5ce1507
Try protoc action in wheels build to unblock
charlesbluca May 18, 2023
a0ccafb
Skip hive testing on 3.11 for now
charlesbluca May 19, 2023
6b88ea6
Fix workflow syntax errors
charlesbluca May 19, 2023
9768842
Stop running wheel CI
charlesbluca May 19, 2023
30c9818
Bump pyo3 abi minor version
charlesbluca May 26, 2023
738bbd4
Initial run of pyupgrade to py39
charlesbluca May 26, 2023
36063e6
Merge remote-tracking branch 'origin/main' into drop-py38
charlesbluca May 26, 2023
2d3eaf4
Merge remote-tracking branch 'origin/main' into drop-py38
charlesbluca May 30, 2023
95e8ff9
Continue marking test_dask_fsql as flaky
charlesbluca May 30, 2023
c922000
Merge remote-tracking branch 'upstream/main' into pr/charlesbluca/1143
charlesbluca Nov 7, 2023
3a5842d
More places to drop 3.8
charlesbluca Nov 7, 2023
aff881e
Merge remote-tracking branch 'upstream/main' into drop-py38
charlesbluca Jan 8, 2024
7bf2057
Try running tests on python 3.12
charlesbluca Jan 8, 2024
3e58de2
Add environment file
charlesbluca Jan 8, 2024
e96115a
Skip sasl installation
charlesbluca Jan 8, 2024
025dbd0
Drop protoc build dep
charlesbluca Jan 8, 2024
44ed2ef
Drop mlflow constraint
charlesbluca Jan 8, 2024
cc7f209
Set min version for mlflow
charlesbluca Jan 8, 2024
88ccaaa
Drop mlflow from 3.12 tests for now
charlesbluca Jan 8, 2024
0eeb338
Relocate docker/server files to continuous_integration
charlesbluca Jan 8, 2024
5d501c4
Unpin dask/distributed
charlesbluca Jan 9, 2024
bdcb0e3
unpin 3.9 gpu environment
charlesbluca Jan 9, 2024
78df128
add 3.12 to classifiers
charlesbluca Jan 9, 2024
ae174c1
unpin dask in gpuci 3.9
charlesbluca Jan 9, 2024
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
Prev Previous commit
Next Next commit
More places to drop 3.8
  • Loading branch information
charlesbluca committed Nov 7, 2023
commit 3a5842db42ba8f560083762871c0f664a89050a1
2 changes: 1 addition & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10"]
python: ["3.9", "3.10", "3.11"]
arch: ["linux-64", "linux-aarch64"]
steps:
- name: Manage disk space
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async-trait = "0.1.74"
datafusion-python = "28.0.0"
env_logger = "0.10"
log = "^0.4"
pyo3 = { version = "0.19.1", features = ["extension-module", "abi3", "abi3-py38"] }
pyo3 = { version = "0.19.1", features = ["extension-module", "abi3", "abi3-py39"] }
pyo3-log = "0.9.0"

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ 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",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
]
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"dask[dataframe]>=2022.3.0",
"distributed>=2022.3.0",
Expand Down
Loading