Skip to content

Commit

Permalink
Fix installation from PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
mretegan committed Mar 27, 2023
1 parent 0e27fc0 commit 19e0cff
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ What's new:

v0.6.1 (2018-06-05)
-------------------
This is a bug fix release.
This is a bug-fix release.

v0.6.0 (2018-06-03)
-------------------
Expand Down Expand Up @@ -109,7 +109,7 @@ What's new:

v0.1.0 (2016-08-21)
-------------------
First release of Crispy:
The first release of Crispy:

* support for the calculation of core-level spectra using Quanty, including:

Expand Down
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# List all dependencies of crispy
# Requires pip >= 8.0

PyQt5
numpy
matplotlib >= 1.2.0
matplotlib
h5py
silx >= 0.7.0
PyQt5
silx
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ def get_readme():


def get_version():
from crispy import version
return version.strictversion


return "0.7.4"
def get_requirements():
requirements = list()
with open('requirements.txt') as fp:
Expand Down
3 changes: 1 addition & 2 deletions setup_cx_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@


def get_version():
from crispy import version
return version.strictversion
return "0.7.4"


def create_installer():
Expand Down
3 changes: 1 addition & 2 deletions setup_py2app.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@


def get_version():
from crispy import version
return version.strictversion
return "0.7.4"


def clean_folders(folders):
Expand Down

0 comments on commit 19e0cff

Please sign in to comment.