From 5e605179d5c6146e3d092b855e31f5f10cf869bf Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sat, 5 Aug 2017 19:49:02 +0100 Subject: [PATCH] fs dependancy --- README.md | 4 +++- fs_s3fs/_version.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e5663ea..926406a 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,6 @@ S3FS is a [PyFilesystem interface](https://docs.pyfilesystem.org/) to Amazon S3 cloud storage. As a PyFilesystem concrete class, S3FS allows you to work with S3 in the -same as any other supported filesystem. \ No newline at end of file +same as any other supported filesystem. + +[Documentation](http://fs-s3fs.readthedocs.io/en/latest/) \ No newline at end of file diff --git a/fs_s3fs/_version.py b/fs_s3fs/_version.py index 1907bc8..3dc1f76 100644 --- a/fs_s3fs/_version.py +++ b/fs_s3fs/_version.py @@ -1 +1 @@ -__version__ = "0.1.0a0" \ No newline at end of file +__version__ = "0.1.0" diff --git a/setup.py b/setup.py index f16793f..63aa9bd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ REQUIREMENTS = [ "boto3~=1.4.5", - "fs==2.0.6a2", + "fs==2.0.6", "six~=1.10.0" ]