Skip to content

Commit

Permalink
Release 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Moreno committed Jul 17, 2024
1 parent 587cb5d commit 8026fdf
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 94 deletions.
7 changes: 0 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,6 @@
pydv_version = fp.read()


DOCS_DIR = os.path.dirname(os.path.abspath(__file__))
PYDV_DIR = os.path.dirname(DOCS_DIR)
version_file = os.path.join(PYDV_DIR, 'scripts/version.txt')
with open(version_file, 'r') as fp:
pydv_version = fp.read()


# -- General configuration ------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand Down
74 changes: 0 additions & 74 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,80 +126,6 @@ Release Notes



3.1.4
-----
* Makefile change to do 'sed' on pdv to update the python path
and chmod -R 750 develop


3.1.3
-----
* Added CI running in CZ and RZ
* Run RZ specific tests in CI (when running in RZ)
* Updated test baselines - due to python.3.8.2


3.1.15
------
* Bug fix for save command

3.1.14
------
* Bug fix for custom functions
* Bug fix for step functions

3.1.13
------
* Sina curve sets in library data can now be read

3.1.12
------
* Fixed `parsemath()` not working with step functions for addition, subraction, multiplication, and division

3.1.11
------
* Axes log scale bug fixed

3.1.10
------
* Updated matplotlib from 3.2 to 3.7
* Fixed install bug and duplicate axes bug

3.1.9
-----
* Updated setup.py to pyproject.toml
* Changed docs sphinx theme to furo

3.1.8
-----
* Updated Python path for HPC Upgrades

3.1.7
-----
* Fixed file reading regex bug not reading data points correctly
* Updated `labelfilenames` command to append filename to curve legend
with toggle on/off functionality


3.1.6
-----
* Updated `read` command to accommodate tab-delimited ultra files
* Added `labelrecordids` and `group` commands
compatible with curves from Sina files
* Updated test baselines to cover new commands
* Added tests for pdv and pydypy to cover read functions for
different curve file types and commands to set `menu` column widths:
`xlabelwidth`, `ylabelwidth`, `filenamewidth`, and `recordidwidth`
* Updated CI to run without --system-site-packages; matplotlib version fixed to 3.2.0
and numpy updated to 1.24.2


3.1.5
-----
* Updated CI to run on closed side.



3.1.4
-----
* Makefile change to do 'sed' on pdv to update the python path
Expand Down
6 changes: 0 additions & 6 deletions pydv/pdvplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,6 @@
pydv_version = fp.read()


PYDV_DIR = path.dirname(path.abspath(__file__))
version_file = path.join(PYDV_DIR, 'scripts/version.txt')
with open(version_file, 'r') as fp:
pydv_version = fp.read()


class Plotter(QMainWindow):
# PyDV
_pydvcmd = None
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
#
# pip-compile pyproject.toml
#
--index-url https://wci-repo.llnl.gov/repository/pypi-group/simple
--trusted-host wci-repo.llnl.gov

contourpy==1.1.0
# via matplotlib
Expand Down
5 changes: 0 additions & 5 deletions tests/test_pydv_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,11 +495,6 @@
test_images = [_ for _ in os.listdir(output_dir) if _.endswith(".png")]
baseline_images = [_ for _ in os.listdir(BASELINE_DIR) if _.endswith(".png")]

@pytest.mark.parametrize("baseline_image, test_image", list(zip(baseline_images, test_images)))
def test_image(baseline_image, test_image):
baseline = image.imread(os.path.join(BASELINE_DIR, baseline_image))
output = image.imread(os.path.join(output_dir, test_image))
np.array_equal(baseline, output)

@pytest.mark.parametrize("i", list(range(1, len(commands) + 1)))
def test_image(i):
Expand Down

0 comments on commit 8026fdf

Please sign in to comment.