Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-pyfs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-pyfs
Commits
72011e51
Commit
72011e51
authored
Jun 23, 2017
by
Brian Mesick
Committed by
GitHub
Jun 23, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for Django 1.11 (#7)
parent
e0645cfd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
.travis.yml
+1
-0
README.md
+1
-0
setup.py
+1
-1
tox.ini
+2
-1
No files found.
.travis.yml
View file @
72011e51
...
@@ -8,6 +8,7 @@ env:
...
@@ -8,6 +8,7 @@ env:
-
TOXENV=django18
-
TOXENV=django18
-
TOXENV=django19
-
TOXENV=django19
-
TOXENV=django110
-
TOXENV=django110
-
TOXENV=django111
sudo
:
false
sudo
:
false
...
...
README.md
View file @
72011e51
...
@@ -56,6 +56,7 @@ implementation is very Django-specific.
...
@@ -56,6 +56,7 @@ implementation is very Django-specific.
Good next steps would be to:
Good next steps would be to:
*
Upgrade to use PyFilesystem2 when it supports S3
*
Allow Django storages to act as a back-end for pyfilesystem
*
Allow Django storages to act as a back-end for pyfilesystem
*
Allow django-pyfs to act as a back-end for Django storages
*
Allow django-pyfs to act as a back-end for Django storages
*
Support more types of pyfilesystems (esp. in-memory would be nice)
*
Support more types of pyfilesystems (esp. in-memory would be nice)
...
...
setup.py
View file @
72011e51
...
@@ -34,5 +34,5 @@ setup(
...
@@ -34,5 +34,5 @@ setup(
"Topic :: Software Development :: Libraries :: Python Modules"
,
"Topic :: Software Development :: Libraries :: Python Modules"
,
"License :: OSI Approved :: Apache Software License"
,
"License :: OSI Approved :: Apache Software License"
,
],
],
install_requires
=
[
'fs'
,
'boto'
,
'six'
],
install_requires
=
[
'fs'
,
'boto'
,
'six'
,
'django'
],
)
)
tox.ini
View file @
72011e51
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
# and then run "tox" from this directory.
[tox]
[tox]
envlist
=
{py27,py35}-{django18,django19,django110}
envlist
=
{py27,py35}-{django18,django19,django110
,django111
}
[testenv]
[testenv]
passenv
=
CI TRAVIS TRAVIS_*
passenv
=
CI TRAVIS TRAVIS_*
...
@@ -15,3 +15,4 @@ deps =
...
@@ -15,3 +15,4 @@ deps =
django18:
django
=
=1.8
django18:
django
=
=1.8
django19:
django
=
=1.9
django19:
django
=
=1.9
django110:
django
=
=1.10
django110:
django
=
=1.10
django111:
django
=
=1.11
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment