diff --git a/README.rst b/README.rst index 658b45cc..935071cb 100644 --- a/README.rst +++ b/README.rst @@ -262,6 +262,21 @@ natural frequencies and mode shapes. 5781.975 Hz 6919.399 Hz +Developing on Windows +--------------------- + +This package is designed to be developed on Linux, and if you need to develop on Windows +you will need to install your own C++ compiler. We recommend: + + 1. Install Visual C++ + a. See `here `_ for a list of which Python versions correspond to which Visual C++ version + b. Only Python <= 3.8 appears to be supported at the moment. + 2. Install the development version of pymapdl-reader to your Python environment + a. Navigate to the project's top level (the same directory as this README) + b. run ``pip install -e .`` + +To get the package up and running. + License and Acknowledgments --------------------------- The ``ansys-mapdl-reader`` module is licensed under the MIT license. diff --git a/tests/test_rst.py b/tests/test_rst.py index 3a266ec8..45bf6d0f 100644 --- a/tests/test_rst.py +++ b/tests/test_rst.py @@ -120,6 +120,7 @@ def test_map_flag_section_data(): assert np.allclose(rst_2020r2.section_data[key], rst_2021r1.section_data[key]) + def test_overwrite(tmpdir): tmp_path = str(tmpdir.mkdir("tmpdir")) rst = pymapdl_reader.read_binary(copy(examples.rstfile, tmp_path))