python-swat icon indicating copy to clipboard operation
python-swat copied to clipboard

hash error when installing with poetry

Open gygabyte017 opened this issue 2 years ago • 3 comments
trafficstars

Hi, I'm getting this error on Windows server 2019, latest poetry 1.42:

>poetry add swat@latest
Using version ^1.12.1 for swat

Updating dependencies
Resolving dependencies... Downloading https://files.pythonhosted.org/packages/3c/c8/5d6bb20ba20d8770e933d8c0fe956fdc11940af2c39f5b23e02196e0395c/swat-1.12.1-0-cp27-cp27m-macosx_10_9_x86_64.whl#sha256=30ad0ce7e69fa40e19433aa8327b55ae1c0f092fResolving dependencies... (1.6s)

Writing lock file

Package operations: 1 install, 0 updates, 0 removals

  • Installing swat (1.12.1): Failed

  ValueError

  unsupported hash type

  at D:\miniconda\lib\hashlib.py:157 in __hash_new
      153│         # It does neither support keyed blake2 nor advanced features like
      154│         # salt, personal, tree hashing or SSE.
      155│         return __get_builtin_constructor(name)(data, **kwargs)
      156│     try:
    → 157│         return _hashlib.new(name, data)
      158│     except ValueError:
      159│         # If the _hashlib module (OpenSSL) doesn't support the named
      160│         # hash, try using our builtin implementations.
      161│         # This allows for SHA224/256 and SHA384/512 support even though

The following error occurred when trying to handle this error:


  ValueError

  unsupported hash type sha

  at D:\miniconda\lib\hashlib.py:120 in __get_builtin_constructor
      116│     constructor = cache.get(name)
      117│     if constructor is not None:
      118│         return constructor
      119│
    → 120│     raise ValueError('unsupported hash type ' + name)
      121│
      122│
      123│ def __get_openssl_constructor(name):
      124│     if name in __block_openssl_constructor:

gygabyte017 avatar Apr 08 '23 18:04 gygabyte017

The swat wheel is invalid in many ways, one of them being sufficiently unusual that poetry does not handle it gracefully

  • all hash values in the RECORD are wrongly encoded (see https://packaging.python.org/en/latest/specifications/binary-distribution-format/#signed-wheel-files)
  • some hash values say sha where they mean sha256 (this is the one that catches poetry)
  • the self-entry for RECORD does not have the correct path

dimbleby avatar Apr 08 '23 20:04 dimbleby

Thanks for pointing this out, and thanks for the detailed information on the problems. I'm looking into getting this corrected.

bkemper24 avatar Apr 18 '23 11:04 bkemper24

For anyone who may be interested, with the latest version of poetry 1.5.1 the wheel validation is not enforced and only a warning is issued:

  • Installing swat (1.13.0)
Warning: Validation of the RECORD file of swat-1.13.0-0-cp310-cp310-win_amd64.whl failed. Please report to the maintainers of that package so they can fix their build process. Details:
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/actions.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/connection.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/datamsghandlers.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/dbapi.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/magics.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/request.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/response.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/rest/connection.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/rest/error.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/rest/message.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/rest/response.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/rest/table.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/rest/value.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/rest/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/results.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/table.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/transformers.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/types.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/utils/datetime.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/utils/misc.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/utils/params.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/utils/tk.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/utils/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/cas/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/clib.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/config.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/dataframe.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/datamsghandlers.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/exceptions.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/formatter.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/functions.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/linux/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/mac/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/cdfquant.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/dbghelp.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/expsetin.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/gendevio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/hdepcli.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/icudt70.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/icuin70.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/icuuc70.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/icve420u.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/icvsjs4u.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lcebin.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lceda.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lceen.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lcees.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lcefi.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lceicu.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lceit.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lceja.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lceno.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lcepl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lcesv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/lcstb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/librabbitmq.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/prmetrics.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/skndns.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/sslsocket.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/symsrv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a0en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0a9en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0b1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0b4en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0b5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0b7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0b8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0c1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0c4en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0c8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0d0en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0d3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0d7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0d8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0e0en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0e1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0e3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0e4en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0e5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0f6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0f7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0g0en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0g2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0g8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0h3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0j3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0l4en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0m1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0m7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0q7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0q8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0r9en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0s5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0w1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0x9en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t0y8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1a4en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1c2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1d0en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1f9en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1h7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1i3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1i6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1j0en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1j7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1j8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1j8pb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1j8ru.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1k3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1k8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1l5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1l6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1l7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1l8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1n5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1n7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1y2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t1z3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2a8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2f1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2f5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2f6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2g1en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2i4en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2j2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2j5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2k6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2n5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2n6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2p3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2u6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2v2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t2x8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3b0en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3b5en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3d7en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3d8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3f8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3h2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3i2en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3i6en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3j3en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/t3j8en.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4aarm4.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4aboot.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4acons.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4adb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4afile.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4afilt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4afref.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4aiomc.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4aiome.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4aioms.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4ajava.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4ajnlc.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4arbt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4aroll.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4asasl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4aslog.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4asock.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tk4awinf.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkarm.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkarray.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkasexpo.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkauthin.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkbplus.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkbtree.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkcal.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkcasvar.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkcg.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkcident.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkcjson.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkconio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkcop.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkctb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkctb2ds.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkdbrix.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkdecnm.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkdflic.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkdflics.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkdictionary.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeaa.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeai.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeavl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkecert.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkecradl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkecurator.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkedavc.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkedflic.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkedfwlp.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeeam.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeencr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefd.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmfbi.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmfdt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmflv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmfms.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmfnl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmftm.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmfuw.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmibi.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmich.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmprf.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkefmtio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkehml.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeitem.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkejhlp.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkejmap.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkejson.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkela.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeldap.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkelm.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkelog.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkels.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkembl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkememlib.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkemime.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkempiclient.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkemsg.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkemvasv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeparse.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkepcre.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkepdl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeplic.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkepm.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeprtxt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeprxmg.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkepstor.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkepsudo.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkepwcr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkequ.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkerest.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkersa2.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkerstor.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkert.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkesasio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkesaxp.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkesort.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkessl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tketblb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tketcpm.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tketok.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tketpsn.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tketz.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeul.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeuri.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkeutil.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkevlgio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkevp.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkewh.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkewuchr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkexml.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkextablpkg.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkezip.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkezlib.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkezx.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkfauth.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkgpu.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkhdfsrd.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkicache.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkidring.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkim.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkimc.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkinstance.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkinstjson.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkioe.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkiohq.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkiop.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkitcp.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkjwt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkl4iio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkl4sas.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tklicense.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tklkdn.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkmanager.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkmemx.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkmgrdir.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkmk.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbaf.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbar.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbbe.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbbg.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbbn.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbbs.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbca.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbcs.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbda.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbde.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbel.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldben.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbes.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbet.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbeu.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbfa.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbfi.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbfo.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbfr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbga.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbhe.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbhi.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbhr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbhu.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbid.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbis.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbit.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbja.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbkk.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbkl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbko.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbkw.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldblt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldblv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbmk.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbmr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbms.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbmt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbnb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbnl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbnn.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbno.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbpl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbpt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbro.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbru.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbsh.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbsk.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbsl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbsq.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbsr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbsv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbta.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbte.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbth.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbtl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbtr.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbuk.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbvi.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbzh.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknldbzt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknls.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlscol.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlsenc.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlsgb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlsicv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlsldb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlsloc.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlsmb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlssb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlssm.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknlsudb.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknpx.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknullio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknvgpuutl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknvmlutl.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tknvtools.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkoozie.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkopt.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkperf.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkproto.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkpy.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkqtcp.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkrangen.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tks3.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tksasgpu.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tksched.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tksecas.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tksepcli.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkserv.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tksfDataGrid.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tksigar.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tksqoop.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkstdio.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkstring.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tktable.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkubasec.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkudmnor.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkudmran.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkvault.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkwebhdfs.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/tkwsc.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/yzelib.dll is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/_py310swat.pyd is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/win/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/lib/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/logging.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/magics.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/notebook/zeppelin.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/notebook/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/render/generic.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/render/html.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/render/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_basics.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_builtins.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_bygroups.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_casa.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_connection.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_csess.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_datamsg.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_datapreprocess.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_datetime.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_echo.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_functions.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_imstat.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_params.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_response.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_results.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/test_table.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/cas/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars.fwf is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars.html is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars.sas7bdat is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars.tsv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars.xls is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars_a.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars_b.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars_c.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/cars_single.sashdat is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/dates.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/datetime.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/datetimes.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/iicc.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/merge_company.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/merge_finance.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/merge_repertory.csv is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/datasources/summary_array.sashdat is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_config.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_dataframe.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_decorators.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_formatter.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_keyword.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_types.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_unicode.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/test_xdict.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/tests/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/args.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/authinfo.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/compat.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/config.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/datetime.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/decorators.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/json.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/keyword.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/testing.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/testingmocks.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/xdict.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/utils/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat/__init__.py is not mentioned in RECORD
In swat-1.13.0-0-cp310-cp310-win_amd64.whl, swat-1.13.0.dist-info/RECORD is not mentioned in RECORD

gygabyte017 avatar Jun 12 '23 09:06 gygabyte017