mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
19 lines
595 B
Python
19 lines
595 B
Python
"""Tests for Python version compatibility."""
|
|
import pytest
|
|
import sys
|
|
|
|
|
|
def test_python_version_compatibility():
|
|
"""Test that the package supports the current Python version."""
|
|
# This test will fail if the package doesn't support the current Python version
|
|
import crewai
|
|
|
|
# Print the Python version for debugging
|
|
print(f"Python version: {sys.version}")
|
|
|
|
# Print the crewai version for debugging
|
|
print(f"CrewAI version: {crewai.__version__}")
|
|
|
|
# If we got here, the import worked, which means the package supports this Python version
|
|
assert True
|