I get an error when I run my app. This started happening after reinstalling of m…y packages with `pip install -r requirements.txt`.
```
python - 3.8.9
pip - 22.3.1
cffi - 1.15.1
cryptography - 3.4.8
```
I get this error:
```
Traceback (most recent call last):
File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/core/management/commands/runserver.py", line 125, in inner_run
autoreload.raise_last_exception()
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/utils/autoreload.py", line 87, in raise_last_exception
raise _exception[1]
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/core/management/__init__.py", line 398, in execute
autoreload.check_errors(django.setup)()
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/apps/registry.py", line 116, in populate
app_config.import_models()
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django/apps/config.py", line 269, in import_models
self.models_module = import_module(models_module_name)
File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 783, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/Users/ryanwestlake/Documents/Dev/challenger-api/onboarding/models.py", line 7, in <module>
from django_cryptography.fields import encrypt
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django_cryptography/fields.py", line 9, in <module>
from django_cryptography.core.signing import SignatureExpired
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django_cryptography/core/signing.py", line 23, in <module>
from ..utils.crypto import constant_time_compare, salted_hmac
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/django_cryptography/utils/crypto.py", line 5, in <module>
from cryptography.hazmat.primitives import constant_time, hashes, padding
File "/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/padding.py", line 11, in <module>
from cryptography.hazmat.bindings._padding import lib
ImportError: dlopen(/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_padding.abi3.so, 0x0002): tried: '/Users/ryanwestlake/Documents/Dev/challenger-api/venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_padding.abi3.so' (mach-o file, but is an incompatible architecture (have 'arm64', need 'x86_64'))
```