Skip to content

Commit

Permalink
fix #75, minor version++
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasibalic committed Aug 2, 2021
1 parent 8ccd44b commit 41a68ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion arc/alkali_atom_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ def getRadialMatrixElement(self,
float: dipole matrix element (:math:`a_0 e`).
"""
dl = abs(l1 - l2)
dj = abs(j2 - j2)
dj = abs(j1 - j2)
if not(dl == 1 and (dj < 1.1)):
return 0

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name="ARC-Alkali-Rydberg-Calculator",
version="3.0.19",
version="3.0.20",
description="Alkali Rydberg Calculator",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand All @@ -39,8 +39,8 @@
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 5 - Production/Stable"
],
url="https://github.com/nikolasibalic/ARC-Alkali-Rydberg-Calculator",
download_url="https://github.com/nikolasibalic/ARC-Alkali-Rydberg-Calculator/archive/refs/tags/v3.0.19.tar.gz",
url="https://github.com/nikolasibalic/ARC-Alkali-Rydberg-Calculator",
download_url="https://github.com/nikolasibalic/ARC-Alkali-Rydberg-Calculator/archive/refs/tags/v3.0.20.tar.gz",
author = 'Nikola Sibalic, Elizabeth J. Robertson, Jonathan D. Pritchard, Robert M. Potvliege, Matthew P. A. Jones, Charles S. Adams, Kevin J. Weatherill',
author_email = 'nikolasibalic@physics.org',

Expand Down

0 comments on commit 41a68ea

Please sign in to comment.