Skip to content

Commit

Permalink
Set new version approaching 1.0 and remove old project name (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
mknaranja authored Feb 16, 2023
1 parent 40f3204 commit b34891d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 19 deletions.
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.11)

project(memilio VERSION 0.1.0)
project(memilio VERSION 0.7.0)

option(MEMILIO_BUILD_TESTS "Build memilio unit tests." ON)
option(MEMILIO_BUILD_EXAMPLES "Build memilio examples." ON)
Expand Down
4 changes: 2 additions & 2 deletions docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME = "HPC against Corona"
PROJECT_NAME = "MEmilio"

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.1
PROJECT_NUMBER = 0.7

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion pycode/memilio-epidata/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import Command, find_packages, setup

__version__ = '0.1.0'
__version__ = '0.7.0'


class PylintCommand(Command):
Expand Down
2 changes: 1 addition & 1 deletion pycode/memilio-plot/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import Command, find_packages, setup

__version__ = '0.1.0'
__version__ = '0.7.0'


class PylintCommand(Command):
Expand Down
20 changes: 7 additions & 13 deletions pycode/memilio-simulation/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,16 @@
[sys.executable, "-m", "pip", "install", "scikit-build"])
from skbuild import setup

__version__ = '0.1.0'
__version__ = '0.7.0'

setup(
name='memilio-simulation',
version=__version__,
author='DLR-SC',
author_email='daniel.abele@dlr.de',
maintainer_email='daniel.abele@dlr.de',
name='memilio-simulation', version=__version__, author='DLR-SC',
author_email='daniel.abele@dlr.de', maintainer_email='Martin.Kuehn@DLR.de',
url='https://github.com/DLR-SC/memilio',
description='Part of MEmilio project, python bindings to the C++ libraries that contain the models and simulations.',
packages=find_packages(where=os.path.dirname(os.path.abspath(__file__))),
packages=find_packages(
where=os.path.dirname(os.path.abspath(__file__))),
setup_requires=['cmake'],
install_requires=[],
extras_require={
'dev': ['numpy >= 1.22'],
},
long_description='',
test_suite='memilio.simulation_test',
)
extras_require={'dev': ['numpy >= 1.22'], },
long_description='', test_suite='memilio.simulation_test',)
2 changes: 1 addition & 1 deletion pycode/memilio-surrogatemodel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import find_packages, setup

__version__ = '0.1.0'
__version__ = '0.7.0'

setup(
name='memilio-surrogatemodel', version=__version__, author='DLR-SC',
Expand Down

0 comments on commit b34891d

Please sign in to comment.