Skip to content

Commit

Permalink
make correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaxuan-Lii committed Jul 21, 2021
2 parents 067c289 + 222f3f0 commit a621ab0
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: ['3.5', '3.6', '3.7']
python-version: ['3.5', '3.6', '3.7', '3.8']

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@ Notable changes are logged here by release. This project uses `Semantic
Versioning <http://semver.org/>`__. The changelog format is inspired by
`keep-a-changelog <https://github.com/olivierlacan/keep-a-changelog>`__.

`Unreleased <https://github.com/smtg-ucl/galore/compare/0.6.2...HEAD>`__
`Unreleased <https://github.com/smtg-ucl/galore/compare/0.7.0...HEAD>`__
-------------------------------------------------------------------------

`[0.7.0] <https://github.com/smtg-ucl/galore/compare/0.6.2...0.7.0>`__ - 2021-07-06
-----------------------------------------------------------------------------------
- Continuous integration has been migrated from Travis to Github Actions
- Minimum Python version has been increased to 3.5.

- Python 3.4 was not available through Github actions. It is not wise to
support a platform we cannot test.

- BUGFIX: missing import affecting process_pdos

`[0.6.2] <https://github.com/smtg-ucl/galore/compare/0.6.1...0.6.2>`__ - 2021-05-24
-----------------------------------------------------------------------------------
- Updated setup.py to add a [vasp] extra; this handles Pymatgen
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors:
doi: 10.5281/zenodo.1491826
repository-code: https://github.com/smtg-ucl/galore
title: Galore
version: 0.6.2
version: 0.7.0
date-released: 2021-05-24
programming-languages:
- python
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '0.6'
version = '0.7'
# The full version, including alpha/beta/rc tags.
release = '0.6.2'
release = '0.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 9 additions & 1 deletion galore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,24 @@

from __future__ import print_function

import os.path
from collections import OrderedDict
from collections.abc import Sequence
import logging
<<<<<<< HEAD

This comment has been minimized.

Copy link
@ajjackson

ajjackson Jul 21, 2021

Member

There's a merge conflict here


import galore.formats
=======
>>>>>>> 222f3f05787d36b754356ceb13dba854939c2d16
from math import sqrt, log
import os.path

import numpy as np
from scipy.interpolate import interp1d

<<<<<<< HEAD
=======
import galore.formats
>>>>>>> 222f3f05787d36b754356ceb13dba854939c2d16
from galore.cross_sections import get_cross_sections, cross_sections_info


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def unit_tests():

setup(
name='galore',
version='0.6.2',
version='0.7.0',
description='Broadening and weighting for simulated spectra',
long_description="""
Apply Gaussian and Lorentzian broadening to data from ab initio
Expand Down

0 comments on commit a621ab0

Please sign in to comment.