Skip to content
This repository has been archived by the owner on Jan 4, 2020. It is now read-only.

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelschuetze committed Oct 19, 2018
1 parent 396f0a5 commit 994357e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
language: python
sudo: false
dist: xenial
sudo: true
cache:
pip: true
yarn: true
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
env:
- TRAVIS_NODE_VERSION="4"
- TRAVIS_NODE_VERSION="10.5"
before_install:
- nvm install $TRAVIS_NODE_VERSION
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
install:
- pip install --upgrade setuptools pip
- pip install -r requirements.txt
- pip install mypy
- pip install 'mypy<=0.620'
- pip freeze
- yarn
script:
- node_modules/.bin/gulp jshint
- if [ "`python --version`" \> "Python 3.5.0" ]; then isort --check-only --recursive openslides_protocol tests; fi
- isort --check-only --recursive openslides_protocol tests
- flake8 openslides_protocol tests
- PYTHONPATH=./ DJANGO_SETTINGS_MODULE='tests.settings' openslides test
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ OpenSlides.
Requirements
============

OpenSlides 2.2.x (http://openslides.org/)
OpenSlides 2.2|2.3.x (https://openslides.org/)


Install
Expand Down Expand Up @@ -54,9 +54,9 @@ MIT License, see LICENSE file. The authors are mentioned in the AUTHORS file.
Changelog
=========

Version 1.1 (unreleased)
------------------------

Version 1.0.1 (2018-10-19)
--------------------------
* support for OpenSlides 2.3

Version 1.0 (2018-06-22)
------------------------
Expand Down
4 changes: 2 additions & 2 deletions openslides_protocol/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__verbose_name__ = 'OpenSlides Protocol Plugin'
__description__ = 'This plugin for OpenSlides provides a protocol of events managed in OpenSlides.'
__version__ = '1.1-dev'
__description__ = 'This plugin provides a protocol feature for OpenSlides.'
__version__ = '1.0.1'
__license__ = 'MIT'
__url__ = 'https://github.com/OpenSlides/openslides-protocol'

Expand Down
2 changes: 1 addition & 1 deletion requirements_production.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
openslides>=2.2,<2.3
openslides>=2.2,<3.0
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
license=module.__license__,
packages=find_packages(exclude=['tests']),
include_package_data=True,
Expand Down

0 comments on commit 994357e

Please sign in to comment.