Skip to content

Commit

Permalink
0.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
cnheider committed Feb 5, 2021
1 parent 58895dc commit 6e07627
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_dev.txt
pip install -r requirements_tests.txt
pip install -r requirements/requirements_dev.txt
pip install -r requirements/requirements_tests.txt
- name: Lint with flake8
run: |
pip install flake8
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ python:
- '3.8'
install:
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
- pip install -r requirements_tests.txt
- pip install -r requirements/requirements_dev.txt
- pip install -r requirements/requirements_tests.txt
- pip install -e .
script:
- pytest --cov=draugr
Expand Down
2 changes: 1 addition & 1 deletion draugr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

__project__ = "Draugr"
__author__ = "Christian Heider Nielsen"
__version__ = "0.8.7"
__version__ = "0.8.8"
__doc__ = """
Created on 27/04/2019
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def extras(self) -> dict:
for file in path.iterdir():
if file.name.startswith("requirements_"):
group_name_ = "_".join(file.name.strip(".txt").split("_")[1:])
these_extras[group_name_] = read_reqs(file, path)
these_extras[group_name_] = read_reqs(file.name, path)

all_dependencies = []
for group_name in these_extras:
Expand Down

0 comments on commit 6e07627

Please sign in to comment.