You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the existing issues and didn't find my bug already reported there
I have checked that my bug is still present in the latest release
Sqlacodegen version
2.3.0.post1
SQLAlchemy version
1.4.49
RDBMS vendor
PostgreSQL
What happened?
in inspect.py in python 3.11 ArgSpec variable name changed to FullArgSpec and if we use this package in python 3.11 we got error "from inspect import ArgSpec ImportError: cannot import name 'ArgSpec' from 'inspect' (C:\Python311\Lib\inspect.py)"
it will be fixed if you change "from inspect import ArgSpec" to "from inspect import FullArgSpec" in codegen.py
Database schema for reproducing the bug
No response
The text was updated successfully, but these errors were encountered:
Things to check first
I have searched the existing issues and didn't find my bug already reported there
I have checked that my bug is still present in the latest release
Sqlacodegen version
2.3.0.post1
SQLAlchemy version
1.4.49
RDBMS vendor
PostgreSQL
What happened?
in inspect.py in python 3.11 ArgSpec variable name changed to FullArgSpec and if we use this package in python 3.11 we got error "from inspect import ArgSpec
ImportError: cannot import name 'ArgSpec' from 'inspect' (C:\Python311\Lib\inspect.py)"
it will be fixed if you change "from inspect import ArgSpec" to "from inspect import FullArgSpec" in codegen.py
Database schema for reproducing the bug
No response
The text was updated successfully, but these errors were encountered: