Skip to content

Commit

Permalink
FIX
Browse files Browse the repository at this point in the history
  • Loading branch information
jklymak committed Jun 21, 2022
1 parent aaf126e commit 351c5e7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Install Python dependencies
command: |
python -m pip install --user \
-r docs/requirements.txt
-r docs-requirements.txt
- run:
name: install module
command: python -m pip install --user -ve .
Expand Down
File renamed without changes.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from setuptools import setup, find_packages

# Get the version from versioneer
__version__ = "0.0.2"
__version__ = "0.0.3"

with open("./docs/requirements.txt", "r") as handle:
with open("./docs-requirements.txt", "r") as handle:
requirements_doc = [ld.strip() for ld in handle.read().splitlines() if ld.strip()]

with open("./tests/requirements.txt", "r") as handle:
with open("./tests-requirements.txt", "r") as handle:
requirements_dev = [ld.strip() for ld in handle.read().splitlines() if ld.strip()]

with open("./requirements.txt", "r") as handle:
Expand All @@ -21,6 +21,7 @@
packages=find_packages(exclude=['tests']),
python_requires='>=3.6',
install_requires=requirements,
license='Apache',
extras_require={
"code_style": ["flake8<3.8.0,>=3.7.0", "black", "pre-commit==1.17.0"],
"testing": requirements_dev,
Expand Down
File renamed without changes.

0 comments on commit 351c5e7

Please sign in to comment.