diff --git a/Cargo.lock b/Cargo.lock index cb240a63..1c63c30d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1483,7 +1483,7 @@ dependencies = [ [[package]] name = "pyfusion" -version = "2.0.3" +version = "2.0.4-dev0" dependencies = [ "bincode", "chrono", diff --git a/Cargo.toml b/Cargo.toml index fa4ceb52..6d165e17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyfusion" -version = "2.0.3" +version = "2.0.4-dev0" edition = "2021" diff --git a/py_src/fusion/__init__.py b/py_src/fusion/__init__.py index 11abdb91..06e2e7ae 100644 --- a/py_src/fusion/__init__.py +++ b/py_src/fusion/__init__.py @@ -2,7 +2,7 @@ __author__ = """Fusion Devs""" __email__ = "fusion_developers@jpmorgan.com" -__version__ = "2.0.3" +__version__ = "2.0.4-dev0" from fusion._fusion import FusionCredentials from fusion.fs_sync import fsync diff --git a/py_src/fusion/fusion_filesystem.py b/py_src/fusion/fusion_filesystem.py index b8fa1f88..ec5fc0ce 100644 --- a/py_src/fusion/fusion_filesystem.py +++ b/py_src/fusion/fusion_filesystem.py @@ -379,7 +379,9 @@ def stream_single_file( def get_file() -> None: session = self.sync_session - with session.get(url, **self.kwargs) as r: + get_file_kwargs = self.kwargs.copy() + get_file_kwargs.pop("proxy", None) + with session.get(url, **get_file_kwargs) as r: r.raise_for_status() byte_cnt = 0 for chunk in r.iter_content(block_size): diff --git a/pyproject.toml b/pyproject.toml index 4033e14c..a387f50f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyfusion" -version = "2.0.3" +version = "2.0.4-dev0" homepage = "https://github.com/jpmorganchase/fusion" description = "JPMC Fusion Developer Tools" @@ -237,7 +237,7 @@ exclude_lines = [ [tool.bumpversion] -current_version = "2.0.3" +current_version = "2.0.4-dev0" parse = '(?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[a-z]+)(?P\d+))?' serialize = [ '{major}.{minor}.{patch}-{release}{candidate}',