Removed cuda 11 version for consistency with automated tests
All checks were successful
Run Python Tests / test (3.10) (push) Successful in 11s
Run Python Tests / test (3.12) (push) Successful in 14s
Run Python Tests / test (3.8) (push) Successful in 10s

This commit is contained in:
2025-06-16 19:27:24 -04:00
parent 4fe11a1c31
commit 593a9de9e0
3 changed files with 30 additions and 9 deletions

View File

@ -34,11 +34,6 @@ To enable GPU acceleration, install the extra that matches your installed NVIDIA
pip install polysolve[cuda12]
```
**For CUDA 11.x users:**
```bash
pip install polysolve[cuda11]
```
---
## Quick Start
@ -86,6 +81,12 @@ print(f"Approximate roots from GA: {roots_ga[:2]}")
---
## Development & Testing Environment
This project is automatically tested against a specific set of dependencies to ensure stability. Our Continuous Integration (CI) pipeline runs on an environment using **CUDA 12.5** on **Ubuntu 24.04**.
While the code may work on other configurations, all contributions must pass the automated tests in our reference environment. For detailed information on how to replicate the testing environment, please see our [**Contributing Guide**](CONTRIBUTING.md).
## Contributing
Contributions are welcome! Whether it's a bug report, a feature request, or a pull request, please feel free to get involved.