Skip to content

Commit

Permalink
Merge 21a0a31 into 1603a77
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego committed May 5, 2020
2 parents 1603a77 + 21a0a31 commit 8edf6e8
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 232 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ var/
.installed.cfg
*.egg

# Example application
examples/instance/
examples/static/

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
Expand Down Expand Up @@ -61,5 +57,3 @@ docs/_build/

# PyBuilder
target/
examples/instance/
examples/static/
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ env:
python:
- "3.6"
- "3.7"
- "3.8"

matrix:
fast_finish: true
allow_failures:
- env: REQUIREMENTS=devel
- python: 3.8

before_install:
- "pip uninstall -y six"
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
Changes
=======

Version 1.2.1 (Release TBD)
----------------------------------

- set Sphinx ``<3`` because of errors related to application context
- stop using example app

Version 1.2.0 (Release 2020-03-13)
----------------------------------

Expand Down
10 changes: 0 additions & 10 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,18 @@ include .tx/config
include LICENSE
include babel.ini
include docs/requirements.txt
include examples/requirements.txt
include pytest.ini
recursive-include docs *.bat
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs Makefile
recursive-include examples *.csv
recursive-include examples *.html
recursive-include examples *.ipynb
recursive-include examples *.ipynb
recursive-include examples *.jpg
recursive-include examples *.jpg
recursive-include examples *.json
recursive-include examples *.json
recursive-include examples *.md
recursive-include examples *.pdf
recursive-include examples *.png
recursive-include examples *.png
recursive-include examples *.py
recursive-include examples *.sh
recursive-include examples *.sh
recursive-include examples *.xml
recursive-include examples *.xml
recursive-include examples *.zip
recursive-include invenio_previewer *.bcmap
Expand Down
36 changes: 0 additions & 36 deletions examples/app-setup.sh

This file was deleted.

13 changes: 0 additions & 13 deletions examples/app-teardown.sh

This file was deleted.

138 changes: 0 additions & 138 deletions examples/app.py

This file was deleted.

5 changes: 0 additions & 5 deletions examples/requirements.txt

This file was deleted.

20 changes: 0 additions & 20 deletions examples/templates/index.html

This file was deleted.

7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

extras_require = {
'docs': [
'Sphinx>=1.5.1',
'Sphinx>=1.5.1,<3',
],
'files': [
'invenio-files-rest>=1.0.0',
Expand Down Expand Up @@ -133,10 +133,9 @@
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Development Status :: 5 - Production/Stable',
],
Expand Down

0 comments on commit 8edf6e8

Please sign in to comment.