Skip to content

Commit

Permalink
Update gitignore for build files
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyBoyne committed Jul 2, 2024
1 parent c7737b1 commit 7b18b21
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ env
docs/_build
.coverage
Makefile
make.bat
make.bat

build/
dist/
*.egg-info
2 changes: 1 addition & 1 deletion entmoot/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.4"
__version__ = "2.0.1"
__author__ = "Alexander Thebelt"
__author_email__ = "alexander.thebelt18@imperial.ac.uk"
__license__ = "BSD 3-Clause License"
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
url="https://github.com/cog-imperial/entmoot",
packages=find_packages(exclude=["tests", "docs"]),
install_requires=[
"numpy",
"lightgbm==4.0.0",
"numpy<=2.0.0",
"lightgbm>=4.0.0",
"gurobipy",
"pyomo"
],
setup_requires=[
"numpy",
"lightgbm==4.0.0",
"numpy<=2.0.0",
"lightgbm>=4.0.0",
"gurobipy",
"pyomo"
],
Expand Down

0 comments on commit 7b18b21

Please sign in to comment.