Skip to content

Commit

Permalink
Update version to v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
freud14 committed Mar 24, 2019
1 parent 16be839 commit ec913db
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Use PyToune to:

Read the documentation at [PyToune.org](https://pytoune.org).

PyToune is compatible with __PyTorch >= 0.4.0__ and __Python >= 3.5__.
PyToune is compatible with the __latest version of PyTorch__ and __Python >= 3.5__.

### Cite
```
Expand Down Expand Up @@ -108,7 +108,7 @@ As you can see, PyToune is inspired a lot by the friendliness of [Keras](https:/

## Installation

Before installing PyToune, you must have a working version of [PyTorch 0.4.0](https://pytorch.org/) in your environment.
Before installing PyToune, you must have the latest version of [PyTorch](https://pytorch.org/) in your environment.

- **Install the stable version of PyToune:**

Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Use PyToune to:

Read the documentation at `PyToune.org <https://pytoune.org>`_.

PyToune is compatible with **PyTorch >= 0.4.0** and **Python >= 3.5**.
PyToune is compatible with the **latest version of PyTorch** and **Python >= 3.5**.

Cite
-----
Expand Down Expand Up @@ -119,7 +119,7 @@ As you can see, PyToune is inspired a lot by the friendliness of `Keras <https:/
Installation
============

Before installing PyToune, you must have a working version of `PyTorch 0.4.0 <https://pytorch.org/>`_ in your environment.
Before installing PyToune, you must have the latest version of `PyTorch <https://pytorch.org/>`_ in your environment.

- **Install the stable version of PyToune:**

Expand Down
2 changes: 1 addition & 1 deletion pytoune/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.4.1'
__version__ = '0.5'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy
torch>=0.4.1
torch
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
version=version,
author='Frédérik Paradis',
author_email='fredy_14@live.fr',
url='http://pytoune.org',
url='https://pytoune.org',
download_url='https://github.com/GRAAL-Research/pytoune/archive/v' + version + '.zip',
license='GPLv3',
classifiers=[
Expand All @@ -34,7 +34,7 @@
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=packages,
install_requires=['numpy', 'torch>=0.4.1'],
install_requires=['numpy', 'torch'],
python_requires='>=3',
description='A Keras-like framework and utilities for PyTorch.',
long_description=readme,
Expand Down

0 comments on commit ec913db

Please sign in to comment.