Commit aadad36a authored by Florian Klink's avatar Florian Klink
Browse files

python313Packages.trino-python-client: 0.322.0 -> 0.323.0

* Improve handling of query results containing `null` values for
  the error field.
  ([#512](https://github.com/trinodb/trino-python-client/pull/512))
* Fix accessing spooled segments on S3 when authentication to the
  Trino cluster is used.
  ([#525](https://github.com/trinodb/trino-python-client/pull/525))
* Simplify `segment` cursor API to make it easier to iterate over spooled
  segments.
  ([#525](https://github.com/trinodb/trino-python-client/pull/525))
parent 3eeaa42e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -19,14 +19,14 @@

buildPythonPackage rec {
  pname = "trino-python-client";
  version = "0.322.0";
  version = "0.323.0";
  format = "setuptools";

  src = fetchFromGitHub {
    repo = pname;
    owner = "trinodb";
    tag = version;
    hash = "sha256-Hl88Keavyp1QBw67AFbevy/btzNs7UlsKQ93K02YgLM=";
    hash = "sha256-Nr7p7x5cxxuPv2NUh1uMth97OQ+H2KBlu0SHVJ7Zu1M=";
  };

  nativeBuildInputs = [ setuptools ];