Skip to content

Commit

Permalink
Merge pull request #27 from Morisset/v1.17
Browse files Browse the repository at this point in the history
V1.17
  • Loading branch information
Morisset authored Apr 13, 2023
2 parents 7456876 + bd3fff2 commit f353588
Show file tree
Hide file tree
Showing 34 changed files with 40,488 additions and 1,221 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches:
- master
- main
- v1.16
- devel
jobs:
deploy:
runs-on: ubuntu-latest
Expand Down
863 changes: 863 additions & 0 deletions docs/Notebooks/Answer_to_UetaOtsuka_2022.ipynb

Large diffs are not rendered by default.

308 changes: 0 additions & 308 deletions doxygen_config_user.txt

This file was deleted.

45 changes: 0 additions & 45 deletions make_documentation.py

This file was deleted.

10 changes: 1 addition & 9 deletions pyneb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,13 @@
log_ = config.log_
log_.message('Starting PyNeb version %s' % __version__, calling='PyNeb')


if sys.version_info[0:2] < (2, 6):
log_.warn('Python version >= 2.6 needed, seems you have {0}'.format(sys.version_info), calling='PyNeb')

try:
from numpy.version import version as numpy_version
if [int(n) for n in (numpy_version.split('.')[:3])] < [1, 5, 1] :
log_.warn('Numpy version >= 1.5.1 needed, seems you have {0}'.format(numpy_version), calling='PyNeb')
except:
log_.warn('I do not understand what is your version of numpy: {0}, report this to PyNeb group'.format(numpy_version), calling='PyNeb')

from .utils.manage_atomic_data import _ManageAtomicData
atomicData = _ManageAtomicData()

atomicData.defaultDict = 'PYNEB_21_01'
atomicData.defaultDict = 'PYNEB_23_01'
atomicData.resetDataFileDict()

from .core.pynebcore import Atom, RecAtom, getAtomDict, getRecEmissivity, EmissionLine, Observation, \
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit f353588

Please sign in to comment.