ChristopherSzczyglowski / python_package_template

Development template for Python packages
MIT License
2 stars 0 forks source link

Move python package management to `pipenv` #11

Closed ChristopherSzczyglowski closed 2 years ago

ChristopherSzczyglowski commented 2 years ago

I like the functionality of the Pipfile and Pipfile.lock - let's bring it in.

This is made necessary by the fact that CI was hanging because it could not resolve my dependencies so I had to use pip freeze. Once you have a frozen pip file you may as well got the whole hog and use a Pipfile.lock.

Tasks

ChristopherSzczyglowski commented 2 years ago

This is no longer required now that we are using developer containers.