Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
LarrySnyder committed Aug 10, 2022
1 parent 96a71d5 commit b2ce372
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: "3.8"
python: "3.7"
# You can also specify other tool versions:
# nodejs: "16"
# rust: "1.55"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ using in a reinforcement learning (RL) context)
- More robust attribute handling for various objects

### Changed
- Allow earlier version of numpy (v1.21 insead of v1.22), which in turn allows Python 3.7 instead of 3.8
- New format for storing and loading named instances, and better documentation
- ``newsvendor.newsvendor_explicit()`` parameter renamed to ``revenue`` from ``selling_revenue`` for consistency

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build==0.0.2
jsonpickle==1.0
matplotlib==2.0
networkx==2.0
numpy==1.22
numpy==1.21
scipy==1.6.0
setuptools==49.6
sphinx==4.5.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install_requires =
jsonpickle>=1.0
matplotlib>=2.0
networkx>=2.0
numpy>=1.22
numpy>=1.21
scipy>=1.6.0
setuptools>=49.6
sphinx==4.5.0
Expand Down
2 changes: 1 addition & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# Set to True to run all tests, even those that are normally skipped because
# they are slow.
RUN_ALL_TESTS = False
RUN_ALL_TESTS = True

0 comments on commit b2ce372

Please sign in to comment.