Skip to content

Commit a49ba20

Browse files
author
Feanil Patel
committed
feat!: Rename the package.
We don't have control of the old version of this package on PyPI so we're publishing this to a new location. BREAKING CHANGE: Install `openedx-django-pyfs` instead of `django-pyfs`
1 parent a82298e commit a49ba20

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

README.rst

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
===========
2-
django-pyfs
3-
===========
1+
openedx-django-pyfs
2+
===================
43

54
|pypi-badge| |ci-badge| |codecov-badge| |pyversions-badge|
65
|license-badge|
@@ -32,7 +31,7 @@ Note that expired files are not automatically removed. To remove them,
3231
call ``expire_objects()``. In our system, we had a cron job do
3332
this for a while. Celery, manual removals, etc. are all options.
3433

35-
To configure a django-pyfs to use static files, set a parameter in
34+
To configure a openedx-django-pyfs to use static files, set a parameter in
3635
Django settings:
3736

3837
.. code-block::
@@ -64,35 +63,35 @@ To get your filesystem, call:
6463
Each module should pass a unique namespace. These will typically
6564
correspond to subdirectories within the filesystem.
6665

67-
The django-pyfs interface is designed as a generic (non-Django
66+
The openedx-django-pyfs interface is designed as a generic (non-Django
6867
specific) extension to pyfilesystem2. However, the specific
6968
implementation is very Django-specific.
7069

7170
Good next steps would be to:
7271

7372
* Allow Django storages to act as a back-end for pyfilesystem
74-
* Allow django-pyfs to act as a back-end for Django storages
73+
* Allow openedx-django-pyfs to act as a back-end for Django storages
7574
* Support more types of pyfilesystems (esp. in-memory would be nice)
7675

7776
State: This code is tested and has worked well in a range of settings,
7877
and is currently deployed on edx.org.
7978

80-
.. |pypi-badge| image:: https://img.shields.io/pypi/v/django-pyfs.svg
81-
:target: https://pypi.python.org/pypi/django-pyfs/
79+
.. |pypi-badge| image:: https://img.shields.io/pypi/v/openedx-django-pyfs.svg
80+
:target: https://pypi.python.org/pypi/openedx-django-pyfs/
8281
:alt: PyPI
8382

8483
.. |ci-badge| image:: https://github.com/openedx/django-pyfs/workflows/Python%20CI/badge.svg?branch=master
8584
:target: https://github.com/openedx/django-pyfs/actions?query=workflow%3A%22Python+CI%22
8685
:alt: Github CI
8786

88-
.. |codecov-badge| image:: http://codecov.io/github/edx/django-pyfs/coverage.svg?branch=master
89-
:target: http://codecov.io/github/edx/django-pyfs?branch=master
87+
.. |codecov-badge| image:: http://codecov.io/github/openedx/django-pyfs/coverage.svg?branch=master
88+
:target: http://codecov.io/github/openedx/django-pyfs?branch=master
9089
:alt: Codecov
9190

92-
.. |pyversions-badge| image:: https://img.shields.io/pypi/pyversions/django-pyfs.svg
93-
:target: https://pypi.python.org/pypi/django-pyfs
91+
.. |pyversions-badge| image:: https://img.shields.io/pypi/pyversions/openedx-django-pyfs.svg
92+
:target: https://pypi.python.org/pypi/openedx-django-pyfs
9493
:alt: Supported Python versions
9594

96-
.. |license-badge| image:: https://img.shields.io/github/license/edx/django-pyfs.svg
95+
.. |license-badge| image:: https://img.shields.io/github/license/openedx/django-pyfs.svg
9796
:target: https://github.com/openedx/django-pyfs/blob/master/LICENSE.txt
9897
:alt: License

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ def get_version(*file_paths):
9898

9999

100100
setup(
101-
name='django-pyfs',
101+
name='openedx-django-pyfs',
102102
version=VERSION,
103103
description='Django pyfilesystem integration',
104-
author='Piotr Mitros',
105-
author_email='pmitros@edx.org',
104+
author='Open edX',
105+
author_email='oscm@tcril.org',
106106
packages=['djpyfs'],
107107
license="Apache 2.0",
108108
url="https://github.com/openedx/django-pyfs",

0 commit comments

Comments
 (0)