Skip to content

Commit

Permalink
Add setuptools to dependency list for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Oct 25, 2024
1 parent d2bfb98 commit 403e5f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ defaults:

jobs:
test:
name: CI ${{ matrix.python }} on ${{ matrix.os }}
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

# The maximum number of minutes to let a workflow run
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of the django-environ.
#
# Copyright (c) 2021-2023, Serghei Iakovlev <[email protected]>
# Copyright (c) 2021-2024, Serghei Iakovlev <[email protected]>
# Copyright (c) 2013-2021, Daniele Faraglia <[email protected]>
#
# For the full copyright and license information, please view
Expand Down Expand Up @@ -183,6 +183,7 @@ def get_version_string():
'testing': [
'coverage[toml]>=5.0a4', # Code coverage measurement for Python
'pytest>=4.6.11', # Our tests framework
'setuptools>=71.0.0', # Needed as a dependency for some tests
],
# Dependencies that are required to build documentation
'docs': [
Expand Down

0 comments on commit 403e5f4

Please sign in to comment.