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

Move speech code into a subpackage #2431

Closed
wants to merge 4 commits into from

Commits on Sep 27, 2016

  1. Moving all speech files into subdirectory.

    Done via:
    
    $ mkdir -p speech/google/cloud
    $ cp google/__init__.py speech/google/__init__.py
    $ git add speech/google/__init__.py
    $ cp google/cloud/__init__.py speech/google/cloud/__init__.py
    $ git add speech/google/cloud/__init__.py
    $ git mv google/cloud/speech speech/google/cloud/speech
    $ git mv unit_tests/speech speech/unit_tests
    dhermes committed Sep 27, 2016
    Configuration menu
    Copy the full SHA
    8d15eea View commit details
    Browse the repository at this point in the history
  2. Making speech subpackage into a proper package.

    - Adding README, setup.py, MANIFEST.in, .coveragerc and tox.ini
    - Adding google-cloud-speech as a dependency to the umbrella
      package
    - Adding the speech subdirectory into the list of packages
      for verifying the docs
    - Incorporating the speech subdirectory into the umbrella
      coverage report
    - Adding the speech only tox tests to the Travis config
    - Adding {toxinidir}/../core as a dependency for the speech
      tox config
    dhermes committed Sep 27, 2016
    Configuration menu
    Copy the full SHA
    82b20fa View commit details
    Browse the repository at this point in the history
  3. Fixing up speech fixture imports.

    Done via:
    
    $ git grep -l 'unit_tests.speech._fixtures' |
    > xargs sed -i s/'unit_tests.speech._fixtures'/'unit_tests._fixtures'/g
    dhermes committed Sep 27, 2016
    Configuration menu
    Copy the full SHA
    471079f View commit details
    Browse the repository at this point in the history
  4. Manually removing speech from umbrella package.

    This is because the implementation is not complete.
    dhermes committed Sep 27, 2016
    Configuration menu
    Copy the full SHA
    9c00d52 View commit details
    Browse the repository at this point in the history