py-fortranformat icon indicating copy to clipboard operation
py-fortranformat copied to clipboard

Results 11 py-fortranformat issues
Sort by recently updated
recently updated
newest added

I'm attempting to use fortranformat.py to help read in file, and when I include the format statment used to generate the data, I'm told 'invalid neighbouring token'. The issue seems...

documentation
enhancement

This looks like a great project that I would very readily use in my own codes (I work with a lot of Fortran codes and Fortran outputs). The one thing...

enhancement

``` >>> FortranRecordWriter('(E10.0)').write([10]) '**********' >>> FortranRecordWriter('(E10.0)').write([10.0]) '**********' >>> FortranRecordWriter('(E10.1)').write([10]) ' 0.1E+02' ```

Found this to be incredibly useful for porting of Fortran code to python. Not sure how possible, but would be great if this module could handle default formats for output...

I am trying to package fortranformat for fedora, however I cannot run the tests for the pypi archives, as the Makefile is not included. Also, there are no tags or...

The file does not seem to do anything. It should be `description` not `decsription`. It should be `description = file: README.md` or `description_long = file: README.md`

nose is unmaintained, we should not depend on it.

This PR refactors a few of the examples and other parts of the markdown files. Also fix a bunch of typos (found using codespell). The minor fix to the Makefile...

The failing tests: [test-failures.log.gz](https://github.com/brendanarnold/py-fortranformat/files/15146114/test-failures.log.gz) full log: [builder-live.log.gz](https://github.com/brendanarnold/py-fortranformat/files/15146115/builder-live.log.gz) If I understood you correctly, this is a known issue. In that case feel free to close this as "won't fix". Just looking...

Adds a `pyproject.toml` based build using a `pyproject` based build To install ``` python -m venv .venv source ./.venv/bin/activate python -m pip install --upgrade pip pip install '.[test,build]' pytest tests...