Skip to content

Commit

Permalink
Prepare 2023.10.1 release (#1244)
Browse files Browse the repository at this point in the history
* Bump ucx-py version

* Remove versioneer

* Remove additional mentions of setup.py / versioneer.py

* Enable wheel building workflow

* Use importlib.metadata for version

* Undo RAPIDS version bumps

* Simplify rust crate versions

* Revert dask-sql rust package versions

* Bump to 2023.10.1
  • Loading branch information
charlesbluca committed Oct 17, 2023
1 parent 1552348 commit 88d9a8a
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 2,982 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- main
pull_request:
paths:
- setup.py
- Cargo.toml
- Cargo.lock
- pyproject.toml
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
- main
pull_request:
paths:
- setup.py
- Cargo.toml
- Cargo.lock
- pyproject.toml
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
pull_request:
paths:
- .github/workflows/release.yml
- dask_sql/__init__.py

# When this workflow is queued, automatically cancel any previous running
# or pending jobs from the same branch
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dask-sql"
repository = "https://github.com/dask-contrib/dask-sql"
version = "2023.10.0"
version = "2023.10.1"
description = "Bindings for DataFusion used by Dask-SQL"
readme = "README.md"
license = "Apache-2.0"
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
recursive-include dask_sql *.yaml
recursive-include dask_planner *

include versioneer.py
include dask_sql/_version.py
6 changes: 4 additions & 2 deletions dask_sql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
# https://github.com/dask-contrib/dask-sql/issues/1169
from . import _datafusion_lib # isort:skip

from . import _version, config
import importlib.metadata

from . import config
from .cmd import cmd_loop
from .context import Context
from .datacontainer import Statistics
from .server.app import run_server

__version__ = _version.get_versions()["version"]
__version__ = importlib.metadata.version(__name__)

__all__ = [__version__, cmd_loop, Context, run_server, Statistics]
Loading

0 comments on commit 88d9a8a

Please sign in to comment.