Skip to content
Merged
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.7', '3.8', '3.9']
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion docs/rtd_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:
- click-default-group
- networkx
- pluggy
- pony >=0.7.13
- pony >=0.7.15
- pexpect
- rich

Expand Down
1 change: 1 addition & 0 deletions docs/source/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ all releases are available on `PyPI <https://pypi.org/project/pytask>`_ and
0.1.4 - 2022-01-04
------------------

- :gh:`153` adds support and testing for Python 3.10.
- :gh:`159` removes files for creating a conda package which is handled by conda-forge.
- :gh:`160` adds rudimentary typing to pytask.
- :gh:`161` removes a workaround for pyreadline which is also removed in pytest 7.
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- click-default-group
- networkx
- pluggy
- pony >=0.7.13
- pony >=0.7.15
- rich

# Misc
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ project_urls =
[options]
packages = find:
install_requires =
attrs>=17.4.0
attrs>=19.2.0
click
click-default-group
networkx>=2.4
packaging
pluggy
pony>=0.7.13
pony>=0.7.15
rich
python_requires = >=3.7
include_package_data = True
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ conda_deps =
click-default-group
networkx>=2.4
pluggy
pony >= 0.7.13
pony >= 0.7.15
rich

# Optional and test dependencies
Expand Down