-
Notifications
You must be signed in to change notification settings - Fork 27
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
Issue #33 - Switch BLISS naming to AIT #45
Conversation
doc/source/configuration_intro.rst
Outdated
name: bliss | ||
hostname: bliss.jpl.nasa.gov | ||
name: ait | ||
hostname: ait.jpl.nasa.gov |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to replace hostname like this line?
doc/source/contribute.rst
Outdated
@@ -93,10 +93,10 @@ AIT makes a best-effort attempt at sticking with PEP-8 conventions. | |||
Mailing Lists | |||
------------- | |||
|
|||
The AIT mailings lists are a good way to get in contact with people working on the project. If you need help with something on the project feel free to send an email to the AIT team at **bliss[email protected]**. | |||
The AIT mailings lists are a good way to get in contact with people working on the project. If you need help with something on the project feel free to send an email to the AIT team at **ait[email protected]**. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll need to update the mailing list email
doc/source/developer_info.rst
Outdated
|
||
* Major bumps are for large, non-backwards compatible changes | ||
* Minor bumps are for backwards compatible changes | ||
* Patch bumps are for incremental bug fixes, small releases, and end-of-sprint releases. | ||
|
||
2. *Update the project documentation to use the correct version names.* The following files needs to be updated with the correct version names: | ||
|
||
* `doc/source/conf.py <https://github.jpl.nasa.gov/bliss/bliss-core/blob/master/doc/source/conf.py>`_ - contains a **version** and **release** option. Both of these should be updated to point to the version number for this release. | ||
* `doc/source/conf.py <https://github.jpl.nasa.gov/ait/ait-core/blob/master/doc/source/conf.py>`_ - contains a **version** and **release** option. Both of these should be updated to point to the version number for this release. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doc/source/installation.rst
Outdated
@@ -17,8 +17,8 @@ Clone the repository from JPL Github: | |||
|
|||
.. code-block:: bash | |||
|
|||
$ git clone https://github.jpl.nasa.gov/bliss/bliss-core.git | |||
$ cd bliss-core | |||
$ git clone https://github.jpl.nasa.gov/ait/ait-core.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
github.j.n.g should be replaced with public GH url, which will help #44.
doc/source/installation.rst
Outdated
|
||
.. code-block:: bash | ||
|
||
$ pip install bliss-core --extra-index-url https://bliss.jpl.nasa.gov/pypi/simple/ | ||
$ pip install ait-core --extra-index-url https://ait.jpl.nasa.gov/pypi/simple/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should remove the reference to j.n.g. We can update the pip install
command to install from public PyPi; we will have to update the publish the package as ait-core so that pip install ait-core
will work. Will help #44
doc/source/installation.rst
Outdated
@@ -145,4 +145,4 @@ Run the following to upgrade to the latest AIT Core versions. | |||
|
|||
.. code-block:: bash | |||
|
|||
$ pip install bliss-core --extra-index-url https://bliss.jpl.nasa.gov/pypi/simple/ --upgrade | |||
$ pip install ait-core --extra-index-url https://ait.jpl.nasa.gov/pypi/simple/ --upgrade |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above re: installation from public PyPi.
doc/source/project_setup.rst
Outdated
@@ -12,18 +12,18 @@ If you use a requirements file for specifying dependencies: | |||
|
|||
.. code-block:: bash | |||
|
|||
--extra-index-url https://bliss.jpl.nasa.gov/pypi/simple/ | |||
bliss-core==1.0.0 | |||
--extra-index-url https://ait.jpl.nasa.gov/pypi/simple/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can remove the j.n.g reference.
Thanks @lorsposto! Updated with your change requests. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Please review this carefully folks. Obviously this is a massive amount of changes in here.
@lorsposto I'll probably need you to look at the PyPi related stuff since I'm not terribly familiar with it at the moment.
Resolve #33