Skip to content

Commit d80504a

Browse files
authored
Add support and testing for Python 3.10. (#153)
1 parent 757e617 commit d80504a

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/continuous-integration-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
27-
python-version: ['3.7', '3.8', '3.9']
27+
python-version: ['3.7', '3.8', '3.9', '3.10']
2828

2929
steps:
3030
- uses: actions/checkout@v2

docs/rtd_environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies:
2424
- click-default-group
2525
- networkx
2626
- pluggy
27-
- pony >=0.7.13
27+
- pony >=0.7.15
2828
- pexpect
2929
- rich
3030

docs/source/changes.rst

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ all releases are available on `PyPI <https://pypi.org/project/pytask>`_ and
4646
0.1.4 - 2022-01-04
4747
------------------
4848

49+
- :gh:`153` adds support and testing for Python 3.10.
4950
- :gh:`159` removes files for creating a conda package which is handled by conda-forge.
5051
- :gh:`160` adds rudimentary typing to pytask.
5152
- :gh:`161` removes a workaround for pyreadline which is also removed in pytest 7.

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- click-default-group
2222
- networkx
2323
- pluggy
24-
- pony >=0.7.13
24+
- pony >=0.7.15
2525
- rich
2626

2727
# Misc

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ project_urls =
3434
[options]
3535
packages = find:
3636
install_requires =
37-
attrs>=17.4.0
37+
attrs>=19.2.0
3838
click
3939
click-default-group
4040
networkx>=2.4
4141
packaging
4242
pluggy
43-
pony>=0.7.13
43+
pony>=0.7.15
4444
rich
4545
python_requires = >=3.7
4646
include_package_data = True

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ conda_deps =
2323
click-default-group
2424
networkx>=2.4
2525
pluggy
26-
pony >= 0.7.13
26+
pony >= 0.7.15
2727
rich
2828

2929
# Optional and test dependencies

0 commit comments

Comments
 (0)