Skip to content

Commit

Permalink
Adding requirements.txt file, see issue #23 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
ifilot committed Jun 28, 2023
1 parent 2e7dcbf commit 3e9dfb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions EDP-2.0.1.eb → EDP-2.0.3.eb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = 'EDP'
version = '2.0.1'
version = '2.0.3'

homepage = 'https://edp.imc-tue.nl'
description = "Electron Density Plotter"
Expand All @@ -11,7 +11,7 @@ sources = [{
'git_config': {
'url': 'https://github.com/ifilot',
'repo_name': 'edp',
'tag': 'v2.0.1',
'tag': 'v2.0.3',
'clone_into': 'edp',
},
}]
Expand All @@ -35,4 +35,4 @@ configopts = "-DCMAKE_BUILD_TYPE=Release"
sanity_check_paths = {
'files': ["bin/edp"],
'dirs': [],
}
}
2 changes: 2 additions & 0 deletions scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
matplotlib==3.7.1
numpy==1.17.4
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules )
# prepare configuration file
SET(VERSION_MAJOR "2")
SET(VERSION_MINOR "0")
SET(VERSION_MICRO "2")
SET(VERSION_MICRO "3")
configure_file(${CMAKE_SOURCE_DIR}/config.h.in ${CMAKE_SOURCE_DIR}/config.h @ONLY)
if(EXISTS "${CMAKE_SOURCE_DIR}/config.h")
MESSAGE("[USER] Creating ${CMAKE_SOURCE_DIR}/config.h from ${CMAKE_SOURCE_DIR}/config.h.in")
Expand Down

0 comments on commit 3e9dfb7

Please sign in to comment.