Skip to content
Snippets Groups Projects
Commit 668a33d3 authored by Wolf Widdra's avatar Wolf Widdra
Browse files

Version 2.2.0 (python 3.10)

parent c5025b03
No related branches found
No related tags found
No related merge requests found
File added
File added
......@@ -9,15 +9,14 @@ import scipy.integrate as integrate
libDir = os.path.dirname(os.path.realpath(__file__))
if not (sys.version.startswith('3.6') or sys.version.startswith('3.8')):
print('''Make sure the Fortran routines 'myEels20' and 'myBoson'
have been complied with the proper f2py3 for the right
python version!!''')
try:
from libhreels import myEels20 as LambinEELS # wrapper for myEels20.f90
from libhreels import myBoson as LambinBoson # wrapper for myBoson.f90
except:
print('myEels20 and MyBoson are not available here (Check your version)')
print('''Make sure the Fortran routines 'myEels20' and 'myBoson'
have been complied with the proper f2py for the right python version!!''')
print('\n\n\n')
# Experimental setup as dictionary:
setup = {
......
File added
File added
[tool.poetry]
name = "libhreels"
version = "2.1.2"
version = "2.2.0"
description = "Handling, simulating, and plotting HREELS and Auger spectroscopy data"
authors = ["Wolf Widdra <wolf.widdra@physik.uni-halle.de>"]
include = ["*./libhreels/*"]
......@@ -10,14 +10,16 @@ homepage = "https://gitlab.informatik.uni-halle.de/e3fm8/libhreels"
[tool.poetry.dependencies]
importlib-metadata = {version = "^1.0", python = "<3.8"}
importlib-metadata = {version = "^1.0", python = "<4.0"}
python = "^3.8"
matplotlib = "^3.2"
scipy = "^1.4"
#elog = {url = "https://github.com/paulscherrerinstitute/py_elog/archive/master.zip"}
matplotlib = "^3.8"
scipy = "^1.10"
requests = "^2.23.0"
argparse = "^1.4.0"
numpy = "^1.18.2"
numpy = "^1.22"
PyQt5 = "^5.15"
PyQt5-Qt5 ="^5.15"
#elog = {url = "https://github.com/paulscherrerinstitute/py_elog/archive/master.zip"}
[tool.poetry.dev-dependencies]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment