Skip to content

Commit fcc7e47

Browse files
authored
Fix installation for windows, update travis. (#205)
* Version bump. * Update travis. * Update travis. * Update changelog * Version bump.
1 parent 9af5ee7 commit fcc7e47

4 files changed

Lines changed: 21 additions & 8 deletions

File tree

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ python:
99
- 3.7
1010
#- "3.6-dev"
1111
#- "3.7-dev"
12-
#- 3.8
12+
- 3.8
1313

1414
env:
15-
- 'TV=0.3.0 TORCH=1.1.0'
16-
- 'TV=0.4.0 TORCH=1.2.0'
15+
# - 'TV=0.3.0 TORCH=1.1.0'
16+
# - 'TV=0.4.0 TORCH=1.2.0'
1717
- 'TV=0.4.1 TORCH=1.3.0'
1818
- 'TV=0.5.0 TORCH=1.4.0'
1919
- 'TV=0.6.0 TORCH=1.5.0'

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
### Added
1212

13+
### Changed
14+
15+
### Fixed
16+
17+
18+
## v0.1.5
19+
20+
### Fixed
21+
22+
* Fix setup.py for windows installs.
23+
24+
## v0.1.4
25+
26+
### Added
27+
1328
* `FilteredMetaDatasest` filter the classes used to sample tasks.
1429
* `UnionMetaDatasest` to get the union of multiple MetaDatasets.
1530
* Alias `MiniImageNetCNN` to `CNN4` and add `embedding_size` argument.
@@ -24,8 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2439

2540
* Updated reference for citations.
2641

27-
### Fixed
28-
2942

3043
## v0.1.3
3144

learn2learn/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.3'
1+
__version__ = '0.1.5'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@
5858
zip_safe=False, # as per Cython docs
5959
version=VERSION,
6060
description='PyTorch Meta-Learning Framework for Researchers',
61-
long_description=open('README.md').read(),
61+
long_description=open('README.md', encoding='utf8').read(),
6262
long_description_content_type='text/markdown',
6363
author='Debajyoti Datta, Ian bunner, Seb Arnold, Praateek Mahajan',
64-
64+
author_email='[email protected]',
6565
url='https://github.com/learnables/learn2learn',
6666
download_url='https://github.com/learnables/learn2learn/archive/' + str(VERSION) + '.zip',
6767
license='MIT',

0 commit comments

Comments
 (0)