Ilya
Ilya
Fixes #5614 #### Issue The `***` combination produces an exception when used as a seperator in `re.split`. Instead `\*\*\*` should be used for regex exprations. #### Who can review? @eyurtsev
Based on [this](https://stackoverflow.com/questions/74968585/using-environment-variables-in-pyproject-toml-for-versioning) request from StackOverflow. ## Summary of changes * Adding the ability to set the dynamic version using an environment variable. ### Pull Request Checklist - [x] Changes...
29 model._feed_targets + 30 model._feed_sample_weights) ---> 31 if model._uses_dynamic_learning_phase(): 32 inputs += [K.learning_phase()] 33 fast_params = model._collected_trainable_weights AttributeError: 'Sequential' object has no attribute '_uses_dynamic_learning_phase'
`SQLQuery.is_valid()` raises an exception for `with` query statements: ``` from sqlvalidator.sql_validator import SQLQuery sql_with = """with a as (select * from b) select * from a """ sql_query = SQLQuery(sql_with)...
Sometimes (like in my case) there are different `requirements.txt` files for different python versions. Currently the only way to enforce package installation based on python version is in the `requirements.txt`...