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

rename clickhouse to proton to avoid conflicts #19

Merged
merged 3 commits into from
Sep 21, 2023
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 .coveragerc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[run]
plugins = Cython.Coverage
source = clickhouse_driver
source = proton_driver
8 changes: 4 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[flake8]
filename = *.py, *.pyx
per-file-ignores =
clickhouse_driver/columns/largeint.pyx: E225, E226, E227, E999
clickhouse_driver/bufferedreader.pyx: E225, E226, E227, E999
clickhouse_driver/bufferedwriter.pyx: E225, E226, E227, E999
clickhouse_driver/varint.pyx: E225, E226, E227, E999
proton_driver/columns/largeint.pyx: E225, E226, E227, E999
proton_driver/bufferedreader.pyx: E225, E226, E227, E999
proton_driver/bufferedwriter.pyx: E225, E226, E227, E999
proton_driver/varint.pyx: E225, E226, E227, E999
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ A clear and concise description of what you expected to happen.
**Versions**

- Version of package with the problem.
- ClickHouse server version. Version can be obtained by running `SELECT version()` query.
- Proton server version. Version can be obtained by running `SELECT version()` query.
- Python version.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,5 @@ ENV/

# PyCharm project settings
.idea/
.pypirc
.vscode/
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
recursive-include clickhouse_driver *.pyx
recursive-include proton_driver *.pyx
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ build:
python3 -m build

test:
pip install ./dist/clickhouse-driver-0.2.4.tar.gz
pip install ./dist/proton-driver-0.2.4.tar.gz
Loading