Skip to content

Commit

Permalink
More flexible range with arch
Browse files Browse the repository at this point in the history
The tests pass with `arch==7.0`,  a pinned version to 5.3.1 causes failure on CI for Python 11 (no pre-built wheel): DLR-RM/rl-baselines3-zoo#464
  • Loading branch information
araffin authored Jun 29, 2024
1 parent 6cbbab0 commit 904d878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
long_description = (here / 'README.md').read_text(encoding='utf-8')

install_requires = [
'arch == 5.3.1',
'arch >= 5.3.1, < 8.0',
'scipy >= 1.7.0',
'absl-py >= 0.9.0',
'numpy >= 1.16.4',
Expand All @@ -40,7 +40,7 @@

setup(
name='rliable',
version='1.0.8',
version='1.1.0',
description=rliable_description,
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 904d878

Please sign in to comment.