Skip to content

Commit 96f9757

Browse files
committed
Minor changes and updates.
1 parent 7959a90 commit 96f9757

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
EPRpy is a Python library designed to streamline the handling, inspection, and processing of Electron Paramagnetic Resonance (EPR) spectroscopic data. The library originated as a collection of scripts I wrote for routine analysis of EPR data acquired on Bruker EPR spectrometers during my academic work. EPRpy focusses on ease of use, enabling quick data visualization (see below), data comparisons, and having transparent as well as highly customisable control over data analysis.
1111

12-
<img src="https://github.com/davistdaniel/EPRpy/blob/main/docs/source/images/title_gif.gif" alt="title_gif">
12+
<img src="https://github.com/davistdaniel/EPRpy/raw/main/docs/source/images/title_gif.gif" alt="title_gif">
1313

1414
## Installation
1515

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'EPRpy'
1010
copyright = '2024, Davis Thomas Daniel'
1111
author = 'Davis Thomas Daniel'
12-
release = '0.9.0a6'
12+
release = '0.9.0a7'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

docs/source/images/title_gif.gif

-3.59 MB
Loading

eprpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.9.0a6"
1+
__version__ = "0.9.0a7"
22
from eprpy.loader import load, EprData
33
from eprpy.plotter import eprplot
44
import numpy as np

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "eprpy"
7-
version = "0.9.0a6"
7+
version = "0.9.0a7"
88
description = "A Python library for working with EPR spectroscopic data."
99
readme = "README.md"
1010
requires-python = ">=3.9, <3.13.1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='eprpy',
5-
version='0.9.0a6',
5+
version='0.9.0a7',
66
description="A Python library for working with EPR spectroscopic data.",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)