Skip to content

Commit

Permalink
Drop tags
Browse files Browse the repository at this point in the history
  • Loading branch information
pwwang committed Dec 5, 2019
1 parent 6e365f6 commit f0b7d74
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
sudo: false
language: python
python:
- "3.5"
- "3.6"
matrix:
include:
- python: 3.6
- python: 3.7
dist: xenial
before_install:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "python-simpleconf"
version = "0.2.1"
version = "0.1.11"
description = "Simple configuration management with python."
authors = [ "pwwang <pwwang@pwwang.com>",]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion simpleconf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Simple configuration management with python"""
__version__ = "0.2.1"
__version__ = "0.1.11"
import re
import ast
from os import path
Expand Down
2 changes: 1 addition & 1 deletion tests/test_simpleconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def test_envloader(env_file):
conf._load('/no/such/a.env')
conf._load(env_file)
assert conf.a == 1
with pytest.raises(KeyError):
with pytest.raises(AttributeError):
assert conf.b == 2

conf = Config(with_profile = False)
Expand Down

0 comments on commit f0b7d74

Please sign in to comment.