Skip to content

Commit

Permalink
Merge pull request #30 from QEF/develop
Browse files Browse the repository at this point in the history
Update to bugfix release v1.2.1
  • Loading branch information
brunato authored Dec 13, 2021
2 parents 243f8bd + 4fbe0f6 commit d05df1f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*~
*.swp
*.in
!MANIFEST.in
.tox/
*.egg-info
.idea/
Expand Down
13 changes: 13 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
include LICENSE
include MANIFEST.in
include README.rst
include setup.py
include requirements-dev.txt
include tox.ini
include docs/*
recursive-include qeschema *
include scripts/*
recursive-include tests *

global-exclude __pycache__
global-exclude *.py[cod]
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Davide Brunato, Pietro Delugas'

# The full version, including alpha/beta/rc tags
release = '1.2.0'
release = '1.2.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion qeschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .exceptions import QESchemaError, XmlDocumentError
from .utils import set_logger

__version__ = '1.2.0'
__version__ = '1.2.1'

__all__ = [
'XmlDocument', 'QeDocument', 'PwDocument', 'PhononDocument', 'NebDocument',
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

setup(
name='qeschema',
version='1.2.0',
version='1.2.1',
install_requires=['xmlschema>=1.3.0', 'pyyaml', 'numpy'],
packages=['qeschema'],
package_data={'qeschema': ['schemas/*.xsd']},
package_data={'qeschema': ['schemas/*.xsd', 'schemas/releases/*.xsd']},
scripts = ['scripts/xml2qeinput.py', 'scripts/yaml2qeinput.py'],
url='https://github.com/QEF/qeschema',
license='MIT',
Expand Down

0 comments on commit d05df1f

Please sign in to comment.