Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/CI/README.md is written in an unsupported language. File is not indexed.

0001 # CI instructions
0002 
0003 This directory comntains scripts and other files relating to the CI.
0004 
0005 ## Use poetry to manage requirements
0006 
0007 Since [`poetry`](https://python-poetry.org) supports more robust dependency locking than `pip` this is used for dependency tracking. The authoritative files are `pyproject.toml` which defines the primary dependencies, and `poetry.lock` which defines the full locked dependencies. This can be exported to a `requirements.txt` file via
0008 
0009 ```console
0010 poetry export -f requirements.txt > requirements.txt
0011 ```