Currently the conda-forge Python 3.12 Linux-64 distribution is broken. The package installs but none of the package functions work, e.g. running the example code:
import rtoml
tomlstr = """\
title = "TOML Example"
[owner]
dob = 1979-05-27T07:32:00-08:00
name = "Tom Preston-Werner"
[database]
connection_max = 5000
enabled = true
server = "192.168.1.1"
ports = [8001, 8001, 8002]
"""
rtoml.load(tomlstr)
throws an error:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[4], line 1
----> 1 rtoml.load(tomlstr)
AttributeError: module 'rtoml' has no attribute 'load'
inspecting the imported module shows that none of the load/dump functions are available:
Currently the conda-forge Python 3.12 Linux-64 distribution is broken. The package installs but none of the package functions work, e.g. running the example code:
throws an error:
inspecting the imported module shows that none of the load/dump functions are available:
The
dir
output should look like this:Between this issue and #74 users and dependent packages are very limited on Python 3.12