Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
psyplot: psyplot/[email protected].31
psyplot: psyplot/[email protected].32
mattermost-plugin-notify: nathanaelhoun/[email protected]

executors:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.4.3
======
Minor fix for grid files (`#53 <https://github.com/psyplot/psyplot/pull/53>__`)

v1.4.2
======
Fix for compatibility with python 3.7
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ And we are always happy to help you finalizing incomplete pull requests.

### Documentation Styleguide

* Follow the [numpy documentation guidelines](https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt).
* Follow the [numpy documentation guidelines](https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard).
* Use [reStructuredText](http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html).
* Try to not repeat yourself and make use of the `psyplot.docstring.docstrings`

Expand Down
2 changes: 1 addition & 1 deletion docs/contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Documentation Styleguide
~~~~~~~~~~~~~~~~~~~~~~~~

- Follow the `numpy documentation
guidelines <https://github.com/numpy/numpy/blob/main/doc/HOWTO_DOCUMENT.rst.txt>`__.
guidelines <https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard>`__.
- Use
`reStructuredText <http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html>`__.
- Try to not repeat yourself and make use of the
Expand Down
2 changes: 1 addition & 1 deletion psyplot/config/rcsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ def get_configdir(name='psyplot', env_key='PSYPLOTCONFIGDIR'):
p = os.path.join(h, '.' + name)

if not os.path.exists(p):
os.makedirs(p)
os.makedirs(p, exist_ok=True)
return p


Expand Down
2 changes: 1 addition & 1 deletion psyplot/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ def save_project(self, fname=None, pwd=None, pack=False, **kwargs):
if pack and fname is not None:
target_dir = os.path.dirname(fname)
if not os.path.exists(target_dir):
os.makedirs(target_dir)
os.makedirs(target_dir, exist_ok=True)

def tmp_it():
from tempfile import NamedTemporaryFile
Expand Down