Skip to content

Commit

Permalink
Merge pull request #190 from chummels/release_1.3_b
Browse files Browse the repository at this point in the history
Updating things for 1.3 release
  • Loading branch information
chummels committed Aug 23, 2022
2 parents 57340a0 + d9dac12 commit 95506ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The `CREDITS file <https://github.com/trident-project/trident/blob/main/CREDITS>
has an updated list of contributors to the codebase.


Version 1.3 (August 22, 2022)
Version 1.3 (August 23, 2022)
------------------------------

This is a bug fix release and updates Trident to using yt-4, which has
Expand Down
12 changes: 5 additions & 7 deletions doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ correct docs for the version you are using!

The stable version is tried
and tested and easy to install with pip. The development version is actively
being updated with new features including superior support for particle-based
datasets (previously known as the demeshening). Note that the stable version
being updated with new features. Note that the stable version
of trident requires the stable version of yt, and the development version of
trident requires the development version of yt, due to some
backwards-incompatible changes regarding particle-support in yt/trident.
trident requires the development version of yt.

Thus, the installation steps are slightly different for stable and development,
so pay attention in the steps below. Don't worry if you want to change later,
Expand All @@ -34,12 +32,13 @@ Trident's Major Dependency: yt
`yt <http://yt-project.org>`_ is a python-based software package for the
analysis and visualization of a different numerical datasets, including
astrophysical hydrodynamical data. yt is the primary dependency of Trident,
so you must install it before Trident will work. There are several methods
so it must be present for Trident to work. There are several methods
for installing yt, which are all discussed in detail in the `yt installation
documentation <http://yt-project.org/doc/installing.html>`_. Use the one
that is appropriate for you. We find that using
`conda <https://docs.conda.io/en/latest/>`_ is the most streamlined and
reliable.
reliable for the development install, whereas pip does it automatically for
stable install.

.. _stable-trident:

Expand All @@ -48,7 +47,6 @@ Installing the Stable Version of yt and Trident

Installation of the stable versions of yt and Trident is quite simple::

$ pip install yt
$ pip install trident

Now, you can try to run Trident for the first time, where it will download
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ def get_version(filename):
setup(
name = "trident",
version = VERSION,
author = "Cameron Hummels, Devin Silvia, Britton Smith",
author_email = "trident-project-users@googlegroups.com",
description = ("Spectrum generator for astrophysical simulation data"),
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -64,6 +62,6 @@ def get_version(filename):
'requests',
'scipy',
'yt>=4.0.1',
'yt_astro_analysis'],
'yt_astro_analysis>=1.1.0'],
python_requires='>=3.7'
)

0 comments on commit 95506ac

Please sign in to comment.