From 6d251cb0ab02d223cda265bd6e5b22b3401d89e2 Mon Sep 17 00:00:00 2001 From: Aaron Helsinger Date: Fri, 11 Oct 2019 08:54:10 -0400 Subject: [PATCH] Add comments about keeping requirements in sync --- .travis.yml | 2 ++ README.md | 2 ++ setup.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index cbaca80..f3a86cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ +# NOTE: When editing this, be sure to update setup.py + language: python python: - "3.6" diff --git a/README.md b/README.md index e95eb7b..da82a37 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,7 @@ def tomo(f, q1: qreg, q2: qreg): ## Installation ### Current instructions + * Most any OS should be OK. Instructions tested on Ubuntu 18.04 * Install `git` and `buildessentials` packages * `git-lfs` is now required: See https://git-lfs.github.com/ @@ -140,6 +141,7 @@ config: * Test: `cd pyqgl2; python -m unittest discover`. Should see 80+ tests run without errors (warnings are OK). ### Dependencies + * Working [https://github.com/BBN-Q/QGL] installation (including `networkx`, `numpy`, `scipy`, `bqplot`, `sqlalchemy`) * Python 3.6 * watchdog and meta diff --git a/setup.py b/setup.py index 1e25743..d739c57 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +# NOTE: If you update this, be sure .travis.yml is updated + from setuptools import setup setup(name="pyqgl2", packages=["src\python\pyqgl2","src\python\qgl2"],)