Skip to content

Commit 67d8c59

Browse files
authored
Merge pull request #20 from biowdl/update_deps
add setuptools to dependencies
2 parents cc93ea4 + d081fe6 commit 67d8c59

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up python
1212
uses: actions/setup-python@v2
1313
with:
14-
python-version: '3.10'
14+
python-version: '3.12'
1515
- name: Install dependencies
1616
run: |
1717
python -m pip install --upgrade pip
@@ -24,10 +24,10 @@ jobs:
2424
strategy:
2525
matrix:
2626
python-version:
27-
- '3.7'
28-
- '3.8'
2927
- '3.9'
3028
- '3.10'
29+
- '3.11'
30+
- '3.12'
3131
steps:
3232
- uses: actions/checkout@v1
3333
- name: Set up python ${{ matrix.python-version }}

HISTORY.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
Changelog
44
=========
55

6+
v1.0.1
7+
------
8+
9+
- Added setuptools as a dependency. In some environments setuptools may
10+
not be installed by default. This package uses it for its core
11+
functionality, so it was added as an explicit requirment.
12+
613
v1.0.0
714
------
815

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
miniwdl>=1.0
2-
jinja2
2+
jinja2
3+
setuptools

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
LONG_DESCRIPTION = readme_file.read()
2525

2626
setup(name="WDL-AID",
27-
version="1.1.0-dev",
27+
version="1.0.1-dev",
2828
description="Automatic Input Documentation for WDL workflows",
2929
long_description=LONG_DESCRIPTION,
3030
long_description_content_type='text/markdown',
@@ -36,6 +36,8 @@
3636
"Programming Language :: Python :: 3.8",
3737
"Programming Language :: Python :: 3.9",
3838
"Programming Language :: Python :: 3.10",
39+
"Programming Language :: Python :: 3.11",
40+
"Programming Language :: Python :: 3.12",
3941
"Development Status :: 5 - Production/Stable",
4042
"License :: OSI Approved :: MIT License",
4143
],
@@ -49,7 +51,8 @@
4951
package_data={'': ["*.j2"]},
5052
install_requires=[
5153
"miniwdl>=1.0",
52-
"jinja2"
54+
"jinja2",
55+
"setuptools"
5356
],
5457
entry_points={
5558
"console_scripts":

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tox]
2-
envlist = py37,py38,py39,py310
2+
envlist = py39,py310,py311,py312
33

44
[gh-actions]
55
python =
6-
3.7: py37
7-
3.8: py38
86
3.9: py39
97
3.10: py310
8+
3.11: py311
9+
3.12: py312
1010

1111
[testenv]
1212
deps =
@@ -19,4 +19,4 @@ commands =
1919

2020
[testenv:py3-lint]
2121
deps = flake8
22-
commands = flake8 src/
22+
commands = flake8 src/

0 commit comments

Comments
 (0)