Skip to content

Commit

Permalink
Upgrade OMADS
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed-Bayoumy committed Apr 28, 2024
1 parent 85441e0 commit fd5c324
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lx-build-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install wheel
python setup.py sdist bdist_wheel
pip install dist/DMDO-2401-py3-none-any.whl
pip install dist/DMDO-2404-py3-none-any.whl
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos-build-and-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install wheel
python setup.py sdist bdist_wheel
pip install dist/DMDO-2401-py3-none-any.whl
pip install dist/DMDO-2404-py3-none-any.whl
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/win-build-and-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install wheel
python setup.py sdist bdist_wheel
pip install dist/DMDO-2401-py3-none-any.whl
pip install dist/DMDO-2404-py3-none-any.whl
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = DMDO
version = 2401
version = 2404
author = Ahmed H. Bayoumy
author_email = [email protected]
description = "Python package for DMDO; an implementation of the Nonhierarchical Analytical Target Cascading (NHATC.)"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
name="DMDO",
author="Ahmed H. Bayoumy",
author_email="[email protected]",
version='2401',
version='2404',
packages=find_packages(include=['DMDO', 'DMDO.*']),
description="Distributed Multidisciplinary Design Optimization (DMDO)",
install_requires=[
'pandas>=1.5.2',
'NOBM>=1.0.1',
'NOBM==2404.1',
'numpy==1.22.4',
'OMADS==2401',
'OMADS==2404.1',
'pyyaml'
],
extras_require={
Expand Down

0 comments on commit fd5c324

Please sign in to comment.