Skip to content

WIP Conda env #796

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## HTMcore dependencies manged by Conda
# Use as an alternative to cmake & pip requirements.txt
#
name: htmcore
channels:
- default
- conda-forge
dependencies:
- python==3.7
- pip>=19.3
- git
- cmake>=3.14 #>=3.7, >=3.14 needed for MSVC 2019
- conda-forge:clangxx>=9.0
- conda-forge:eigen
- conda-forge:gtest
- conda-forge:cereal
- pip:
- setuptools>=34.4.0 # needed for Windows with MSVC
- wheel>=0.33.6
## for python bindings (in /bindings/py/)
- numpy>=1.15
- pytest==4.6.5 #4.6.x series is last to support python2, once py2 dropped, we can switch to 5.x
## for python code (in /py/)
- hexy>=1.4.3 # for grid cell encoder
- mock>=1.0.1 # for anomaly likelihood test
- prettytable>=0.7.2 # for monitor-mixin in htm.advanced (+its tests)
## optional dependencies, such as for visualizations, running examples
# should be placed in setup.py section extras_require. Install those by
# pip install htm.core[examples]