Germandrummer92 opened a new pull request, #22744:
URL: https://github.com/apache/superset/pull/22744

   
   
   ### SUMMARY
   * restrict the cryptography package to <39.0
   
   ### TESTING INSTRUCTIONS
   Before:
   
   ``` bash
   > python -m venv venv
   > . venv/bin/activate
   > pip install -e .
   > python -c "from superset import *"
   > Traceback (most recent call last):
     File "<string>", line 1, in <module>
     File "/Users/ddraper/dev/superset/superset/__init__.py", line 21, in 
<module>
       from superset.app import create_app
     File "/Users/ddraper/dev/superset/superset/app.py", line 23, in <module>
       from superset.initialization import SupersetAppInitializer
     File "/Users/ddraper/dev/superset/superset/initialization/__init__.py", 
line 32, in <module>
       from superset.extensions import (
     File "/Users/ddraper/dev/superset/superset/extensions/__init__.py", line 
32, in <module>
       from superset.utils.async_query_manager import AsyncQueryManager
     File "/Users/ddraper/dev/superset/superset/utils/async_query_manager.py", 
line 26, in <module>
       from superset.utils.core import get_user_id
     File "/Users/ddraper/dev/superset/superset/utils/core.py", line 79, in 
<module>
       from cryptography.hazmat.backends.openssl.x509 import _Certificate
   ModuleNotFoundError: No module named 
'cryptography.hazmat.backends.openssl.x509'
   ```
   
   after:
   ```bash
   > python -m venv venv
   > . venv/bin/activate
   > pip install -e .
   > python -c "from superset import *"
   > 
   ```
   
   ### ADDITIONAL INFORMATION
   <!--- Check any relevant boxes with "x" -->
   <!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue -->
   - [X ] Has associated issue:
   - [ ] Required feature flags:
   - [ ] Changes UI
   - [ ] Includes DB Migration (follow approval process in 
[SIP-59](https://github.com/apache/superset/issues/13351))
     - [ ] Migration is atomic, supports rollback & is backwards-compatible
     - [ ] Confirm DB migration upgrade and downgrade tested
     - [ ] Runtime estimates and downtime expectations provided
   - [ ] Introduces new feature or API
   - [ ] Removes existing feature or API
   
   closes  https://github.com/apache/superset/issues/22743


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to