Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Building old conda environments #150

Open
moorepants opened this issue Jul 1, 2021 · 0 comments
Open

Building old conda environments #150

moorepants opened this issue Jul 1, 2021 · 0 comments

Comments

@moorepants
Copy link
Member

In 2018 this env.yml file worked:

name: gaitanalysis-dev-oldest
channels:
  - defaults
dependencies:
  - python =2.7.*
  - numpy =1.8.2
  - scipy =0.13.3
  - matplotlib =1.3.1
  - pytables =3.1.1
  - pandas =0.13.1
  - pyyaml =3.10
  - nose =1.3.1
  - sphinx =1.2.2
  - coverage
  - mock =1.0.1
  - numpydoc =0.4
  - pip:
    - dynamicisttoolkit==0.4.0
    - oct2py==2.4.2

But apparently the "free" channel was moved from "defaults", so this is now required:

name: gaitanalysis-dev-oldest
channels:
  - free
  - defaults
dependencies:
  - python =2.7.*
  - numpy =1.8.2
  - scipy =0.13.3
  - matplotlib =1.3.1
  - pytables =3.1.1
  - pandas =0.13.1
  - pyyaml =3.10
  - nose =1.3.1
  - sphinx =1.2.2
  - coverage
  - mock =1.0.1
  - numpydoc =0.4
  - pip:
    - dynamicisttoolkit==0.4.0
    - oct2py==2.4.2

conda will resolve the packages in this updated version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant