Skip to content

Commit

Permalink
Merge pull request #840 from rickecon/mkl
Browse files Browse the repository at this point in the history
Remove mkl dependency from environment.yml and setup.py
  • Loading branch information
jdebacker authored Jan 5, 2023
2 parents 86b8a3c + b95261f commit ce19afa
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 74 deletions.
5 changes: 0 additions & 5 deletions conda.recipe/bld.bat

This file was deleted.

10 changes: 0 additions & 10 deletions conda.recipe/build.sh

This file was deleted.

52 changes: 0 additions & 52 deletions conda.recipe/meta.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ dependencies:
- python>=3.7.7, <3.11 # This restriction can be removed as soon as we test Python 3.11
- ipython
- setuptools
- mkl>=2021.4.0
- psutil
- scipy>=1.7.1
- pandas>=1.2.5
Expand All @@ -20,4 +19,4 @@ dependencies:
- coverage
- requests
- openpyxl
- black
- black
2 changes: 1 addition & 1 deletion ogcore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
from ogcore.txfunc import *
from ogcore.utils import *

__version__ = "0.10.0"
__version__ = "0.10.1"
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ogcore",
version="0.10.0",
version="0.10.1",
author="Jason DeBacker and Richard W. Evans",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
description="A general equilibribum overlapping generations model for fiscal policy analysis",
Expand All @@ -25,7 +25,6 @@
include_packages=True,
python_requires=">=3.7.7, <3.11",
install_requires=[
"mkl>=2021.4.0",
"psutil",
"scipy>=1.7.1",
"pandas>=1.2.5",
Expand All @@ -43,9 +42,8 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
tests_require=["pytest"],
Expand Down

0 comments on commit ce19afa

Please sign in to comment.