Skip to content

Commit

Permalink
chore: move dev requirements to a dedicated file
Browse files Browse the repository at this point in the history
  • Loading branch information
dopstar committed Aug 1, 2023
1 parent 84341ed commit fc2d025
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 29 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
fail-fast: true

name: Lint on Python ${{ matrix.python-version }}
Expand All @@ -21,15 +21,15 @@ jobs:

- name: Lint
run: |
pip install '.[linting]'
pip install -r dev-requirements.in
flake8 requests_ntlm2
bandit -r requests_ntlm2
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
fail-fast: true

name: Test on Python ${{ matrix.python-version }}
Expand All @@ -42,7 +42,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
pip install '.[testing]'
pip install -r dev-requirements.in
python -m tests.test_server &> /dev/null &
pytest -xv --ignore=tests/functional/test_functional.py --ignore=tests/test_server.py --cov requests_ntlm2 --cov-report term-missing tests
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '2.7'
python-version: '3.7'
- name: Build package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
run: |
Expand Down
15 changes: 15 additions & 0 deletions dev-requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
bandit; python_version != '2.7'
bandit==1.6.2; python_version == '2.7'
codecov
coverage
faker
flake8
flake8-isort==4.1.1; python_version == '2.7'
flake8-isort; python_version != '2.7'
flake8-quotes
flask
mock
pytest
pytest-cov
trustme==0.7.0
wheel
26 changes: 2 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup


version = "6.5.2"
version = "6.5.3"
url = "https://github.com/dopstar/requests-ntlm2"

if "a" in version:
Expand All @@ -23,35 +23,12 @@
"six>=1.10",
]

testing_requirements = [
"flask",
"pytest",
"pytest-cov",
"wheel",
"codecov",
"coverage",
"mock",
"faker",
"trustme==0.7.0",
]

linting_requirements = [
"flake8",
"bandit==1.6.2; python_version == '2.7'",
"bandit; python_version != '2.7'",
"flake8-isort==4.1.1; python_version == '2.7'",
"flake8-isort; python_version != '2.7'",
"flake8-quotes",
]


setup(
name="requests_ntlm2",
version=version,
packages=["requests_ntlm2"],
install_requires=requirements,
tests_require=testing_requirements,
extras_require={"testing": testing_requirements, "linting": linting_requirements},
author="Mkhanyisi Madlavana",
author_email="[email protected]",
url=url,
Expand Down Expand Up @@ -81,6 +58,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
Expand Down

0 comments on commit fc2d025

Please sign in to comment.