I have a current issue where a project I'm trying to deploy in a function has a valid dependency requirement for a more recent version range of pytest which is not compatible with the pinned version in fdk-python ([email protected]). The current pytest release is 7.3.1.
If I understand correctly pytest is also not a core dependency for fdk-python but supports the unit tests capability.
- Can
pytest version be safely upgraded in the project to something more modern?
- Can
pytest be a development dependency and not a required dependency since it's really not a "production" release requirement of a function.