Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.4 Release (Keep nemo away from MyCapytain 3.0.0) #129

Merged
merged 1 commit into from Oct 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,6 +1,5 @@
language: python
python:
- "3.4.5"
- "3.5"
- "3.6"
# command to install dependencies
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.mD
@@ -1,6 +1,12 @@
Change logs
===

## 1.0.4 - 22/10/2019

By @ponteineptique

- Ensure Nemo < 2.0.0 does not use MyCapytain 3.0.0

## 1.0.3 - 22/05/2018

By @sonofmun
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
MyCapytain>=2.0.0
MyCapytain>=2.0.0,<3.0.0
requests_cache>=0.4.9
Flask>=0.12.0
Flask-Caching>=1.2.0
Expand Down
4 changes: 2 additions & 2 deletions setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = "1.0.3"
version = "1.0.4"

setup(
name='flask_nemo',
Expand All @@ -13,7 +13,7 @@
description='Flask Extension to browse CTS Repository',
test_suite="tests",
install_requires=[
"MyCapytain>=2.0.0",
"MyCapytain>=2.0.0,<3.0.0",
"requests_cache>=0.4.9",
"Flask>=0.12",
"requests>=2.10.0",
Expand Down