Skip to content

Commit

Permalink
Merge pull request #13 from EDITD/drop_old_python
Browse files Browse the repository at this point in the history
Drop support for Python <= 3.5
  • Loading branch information
gchazot authored Jun 20, 2022
2 parents eeb4e04 + b5cebb8 commit 277d943
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

+ Add CLI option to temporarily override disk watermarks
+ Print out any unexpected error from ES in reroute operation
+ Drop support for python <= 3.5

# 0.5

Expand Down
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,11 @@
'elasticsearch_rebalancer',
],
url='https://github.com/EDITD/elasticsearch-rebalancer',
python_requires='>=3.6',
install_requires=REQUIREMENTS,
entry_points={
'console_scripts': (
(
'es-rebalance='
'elasticsearch_rebalancer.__main__:rebalance_elasticsearch'
),
'es-rebalance=elasticsearch_rebalancer.__main__:rebalance_elasticsearch',
),
},
)

0 comments on commit 277d943

Please sign in to comment.