calum-chamberlain / ESCI451-Python

Introduction to Python for VUW ESCI 451 course.
GNU General Public License v3.0
11 stars 5 forks source link

2022 Release #19

Closed calum-chamberlain closed 1 year ago

calum-chamberlain commented 2 years ago

Before the start of term we need to:

trap000d commented 2 years ago

Another dependency hell has been introduced in recent ipython version: https://github.com/ipython/ipython/issues/13463 Effectively environment can't be created. Override is to add black to dependency list in environment.yml

calum-chamberlain commented 2 years ago

Ugh, I wondered why my ipython was changing my text! However, I have been able to create the environment on multiple machines - what is the issue with creating the environment as it stands?

trap000d commented 2 years ago

If recent ipython [>=8.0] (and, effectively, black) is already installed (either system-wide, or as part of base conda environment), then all goes well. Otherwise conda crashes on ipython installation. There is no system-wide ipython on our workstations in co-501, that's why I've caught the bug.

calum-chamberlain commented 2 years ago

Ah, that is annoying. I will add black to the dependencies then and make a new release. Thanks for catching this.