Skip to content

Commit 03f7411

Browse files
committed
2 parents ccbd85f + fcc7e47 commit 03f7411

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.travis.yml

+3-3
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

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
### Fixed
1616

1717

18+
## v0.1.5
19+
20+
### Fixed
21+
22+
* Fix setup.py for windows installs.
23+
1824
## v0.1.4
1925

2026
### Added

learn2learn/_version.py

+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
<<<<<<< HEAD
12
__version__ = '0.1.4'
3+
=======
4+
__version__ = '0.1.5'
5+
>>>>>>> fcc7e47f366d7396158335123c173bf3a151f8bd

setup.py

+2-2
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)