Skip to content

Commit 46f247d

Browse files
authored
Bundle maintenance tasks (#22)
* Remove codacy config file and status badge * Remove unused .gitattributes file * Clean coverage.xml file * Add python=3.10 support; drop python=3.6 https://endoflife.date/python * Use strings for version numbers
1 parent cbd6708 commit 46f247d

6 files changed

Lines changed: 4 additions & 10 deletions

File tree

.codacy.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/build-test-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest, macos-latest, windows-latest]
23-
python-version: [3.8, 3.9]
23+
python-version: ["3.8", "3.9", "3.10"]
2424

2525
steps:
2626
- uses: actions/checkout@v2

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ clean-pyc: ## remove Python file artifacts
4747
clean-test: ## remove test and coverage artifacts
4848
rm -fr .tox/
4949
rm -f .coverage
50+
rm -f coverage.xml
5051
rm -fr htmlcov/
5152
rm -fr .pytest_cache
5253

README.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
1212
:target: https://github.com/csdms/bmi
1313

14-
.. image:: https://api.codacy.com/project/badge/Grade/e0252b85fefc402ea4cc5e7949219a94
15-
:target: https://www.codacy.com/app/mcflugen/bmi-example-python?utm_source=github.com&utm_medium=referral&utm_content=csdms/bmi-example-python&utm_campaign=Badge_Grade
16-
1714
bmi-example-python
1815
==================
1916

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ classifiers =
1313
License :: OSI Approved :: MIT License
1414
Operating System :: OS Independent
1515
Programming Language :: Python :: 3
16-
Programming Language :: Python :: 3.6
1716
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
18+
Programming Language :: Python :: 3.9
19+
Programming Language :: Python :: 3.10
1920
Programming Language :: Python :: Implementation :: CPython
2021
Topic :: Scientific/Engineering :: Physics
2122
url = https://github.com/csdms/bmi-example-python

0 commit comments

Comments
 (0)