Skip to content

Commit

Permalink
rel : migrate to version 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Sep 20, 2020
1 parent d8cece0 commit f47980c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.9] - 2020-09-23
### Added
- `notebook_check.py`
- `to_array` method
Expand Down Expand Up @@ -506,7 +507,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- TPR
- documents and `README.md`

[Unreleased]: https://github.com/sepandhaghighi/pycm/compare/v2.8...dev
[Unreleased]: https://github.com/sepandhaghighi/pycm/compare/v2.9...dev
[2.9]: https://github.com/sepandhaghighi/pycm/compare/v2.8...v2.9
[2.8]: https://github.com/sepandhaghighi/pycm/compare/v2.7...v2.8
[2.7]: https://github.com/sepandhaghighi/pycm/compare/v2.6...v2.7
[2.6]: https://github.com/sepandhaghighi/pycm/compare/v2.5...v2.6
Expand Down
2 changes: 1 addition & 1 deletion Otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
PYCM_VERSION = "2.8"
PYCM_VERSION = "2.9"


SETUP_ITEMS = [
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ PyCM is the swiss-army knife of confusion matrices, targeted mainly at data scie
⚠️ PyCM 2.4 is the last version to support **Python 2.7** & **Python 3.4**

### Source code
- Download [Version 2.8](https://github.com/sepandhaghighi/pycm/archive/v2.8.zip) or [Latest Source ](https://github.com/sepandhaghighi/pycm/archive/dev.zip)
- Download [Version 2.9](https://github.com/sepandhaghighi/pycm/archive/v2.9.zip) or [Latest Source ](https://github.com/sepandhaghighi/pycm/archive/dev.zip)
- Run `pip install -r requirements.txt` or `pip3 install -r requirements.txt` (Need root access)
- Run `python3 setup.py install` or `python setup.py install` (Need root access)

### PyPI


- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install pycm==2.8` or `pip3 install pycm==2.8` (Need root access)
- Run `pip install pycm==2.9` or `pip3 install pycm==2.9` (Need root access)

### Conda

Expand Down
2 changes: 1 addition & 1 deletion pycm/pycm_param.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""Parameters and constants."""
PYCM_VERSION = "2.8"
PYCM_VERSION = "2.9"


OVERVIEW = '''
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ def read_description():
setup(
name='pycm',
packages=['pycm'],
version='2.8',
version='2.9',
description='Multi-class confusion matrix library in Python',
long_description=read_description(),
long_description_content_type='text/markdown',
author='Sepand Haghighi',
author_email='[email protected]',
url='https://github.com/sepandhaghighi/pycm',
download_url='https://github.com/sepandhaghighi/pycm/tarball/v2.8',
download_url='https://github.com/sepandhaghighi/pycm/tarball/v2.9',
keywords="confusion-matrix python3 python machine_learning ML",
project_urls={
'Webpage': 'https://www.pycm.ir',
Expand Down

0 comments on commit f47980c

Please sign in to comment.