Skip to content

Commit

Permalink
Updates to fluvio 0.9.5 (#56)
Browse files Browse the repository at this point in the history
* Updates to fluvio 0.9.5

* fix lint
  • Loading branch information
simlay authored Sep 16, 2021
1 parent 19927b3 commit 830c828
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions 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
Expand Up @@ -15,5 +15,5 @@ log = "^0.4.6"

[dependencies]
cpython = { version = "0.6", features = ["extension-module"] }
fluvio = { version = "0.9.3" }
fluvio = { version = "0.9.5" }
fluvio-future = { version = "0.3.9", features = ["task", "io"] }
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ install-wheel: build-wheel
build-dev: venv-pip
$(PYTHON) setup.py develop

integration-tests: install-wheel
integration-tests: build-dev
cd integration-tests && ../venv/bin/python -m unittest

macos-ci-tests: install-wheel
macos-ci-tests: build-dev
cd macos-ci-tests && ../venv/bin/python -m unittest

ci-build: venv-pip
Expand Down
12 changes: 6 additions & 6 deletions macos-ci-tests/test_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ def test_connection_failure(self):
print('ERROR: %s' % e)

self.assertTrue(error is not None)
self.assertTrue(
error.args == (
'Fluvio config error\nCaused by:\nConfig has no active profile', # noqa: E501
) or error.args == (
'Fluvio socket error\nCaused by:\nConnection refused (os error 111)', # noqa: E501
)
self.assertIn(
error.args,
[
('Fluvio config error: Config has no active profile\nCaused by:\nConfig has no active profile',), # noqa: E501
('Fluvio socket error: Connection refused (os error 61)\nCaused by:\nConnection refused (os error 61)',), # noqa: E501
]
)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='fluvio',
version="0.9.0",
version="0.9.5",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author = "Fluvio Contributors",
Expand Down

0 comments on commit 830c828

Please sign in to comment.