Skip to content

[patch] Hotfix project info #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 28, 2024
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributing to pyiron
======================

The following is a set of guidelines for contributing to pyiron, which is
hosted and maintained by the `Max Planck Institut für Eisenforschung`_
hosted and maintained by the `Max Planck Institut für Nachhaltige Materialien`_
on GitHub. These are mostly guidelines to facilitate an efficient
development workflow, and not necessarily rules. Use your best judgment,
and feel free to propose changes even to this document in a pull request.
Expand Down Expand Up @@ -373,7 +373,7 @@ On the other hand the tagged releases are available through conda-forge, as soon

So for both conda and pip both the prereleases as well as the official releases are available.

.. _Max Planck Institut für Eisenforschung: https://mpie.de
.. _Max Planck Institut für Nachhaltige Materialien: https://mpie.de
.. _github page: https://github.com/pyiron
.. _issues page: https://github.com/pyiron/pyiron/issues
.. _FAQ page: https://pyiron.readthedocs.io/en/latest/source/faq.html
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2021, Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department
Copyright (c) 2024, Max-Planck-Institut für Nachhaltige Materialien GmbH - Computational Materials Design (CM) Department
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

# General information about the project.
project = u'snippets'
copyright = u'2021, Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department ' \
copyright = u'2024, Max-Planck-Institut für Nachhaltige Materialien GmbH - Computational Materials Design (CM) Department ' \
u'All rights reserved'

# The version info for the project you're documenting, acts as replacement for
Expand Down Expand Up @@ -245,7 +245,7 @@
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'snippets.tex', u'pyiron_snippets Documentation',
u'Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department', 'manual'),
u'Max-Planck-Institut für Nachhaltige Materialien GmbH - Computational Materials Design (CM) Department', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -277,7 +277,7 @@
('index',
'snippets',
u'snippets Documentation',
[u'Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department'], 1)
[u'Max-Planck-Institut für Nachhaltige Materialien GmbH - Computational Materials Design (CM) Department'], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -293,7 +293,7 @@
('index',
'snippets',
u'snippets Documentation',
u'Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department',
u'Max-Planck-Institut für Nachhaltige Materialien GmbH - Computational Materials Design (CM) Department',
'snippets',
'One line description of project.',
'Miscellaneous'),
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ authors = [
file = "LICENSE"

[project.urls]
Homepage = "https://pyiron.org/"
Documentation = "https://snippets.readthedocs.io"
Homepage = "https://github.com/pyiron/snippets"
Documentation = "https://pyiron-snippets.readthedocs.io"
Repository = "https://github.com/pyiron/snippets"

[tool.versioneer]
Expand Down
22 changes: 3 additions & 19 deletions snippets/logger.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,10 @@
# coding: utf-8
# Copyright (c) Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department
# Distributed under the terms of "New BSD License", see the LICENSE file.

import logging
from types import MethodType

__author__ = "Joerg Neugebauer"
__copyright__ = (
"Copyright 2021, Max-Planck-Institut für Eisenforschung GmbH - "
"Computational Materials Design (CM) Department"
)
__version__ = "1.0"
__maintainer__ = "Jan Janssen"
__email__ = "janssen@mpie.de"
__status__ = "production"
__date__ = "Sep 1, 2017"


"""
Set the logging level for pyiron
"""

import logging
from types import MethodType


def set_logging_level(self, level, channel=None):
"""
Expand Down
16 changes: 1 addition & 15 deletions snippets/singleton.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
# coding: utf-8
# Copyright (c) Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department
# Distributed under the terms of "New BSD License", see the LICENSE file.

"""
Utility functions used in pyiron.
In order to be accessible from anywhere in pyiron, they *must* remain free of any imports from pyiron!
"""
from abc import ABCMeta

__author__ = "Joerg Neugebauer, Jan Janssen"
__copyright__ = (
"Copyright 2020, Max-Planck-Institut für Eisenforschung GmbH - "
"Computational Materials Design (CM) Department"
)
__version__ = "1.0"
__maintainer__ = "Jan Janssen"
__email__ = "janssen@mpie.de"
__status__ = "production"
__date__ = "Sep 1, 2017"
from abc import ABCMeta


class Singleton(ABCMeta):
Expand Down
Loading