Skip to content

Commit e322c7a

Browse files
authored
Merge pull request #61 from rstoneback/fix_testing_versions
Update tested python versions
2 parents c458e8c + ef3da60 commit e322c7a

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ jobs:
1515
os: [ubuntu-latest]
1616
python-version: ["3.9", "3.10", "3.11"]
1717
numpy_ver: [latest]
18-
include:
19-
- python-version: "3.8"
20-
numpy_ver: "1.20"
21-
os: "ubuntu-latest"
2218

2319
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} with numpy ${{ matrix.numpy_ver }}
2420
runs-on: ${{ matrix.os }}
@@ -61,4 +57,17 @@ jobs:
6157
- name: Publish results to coveralls
6258
env:
6359
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60+
COVERALLS_PARALLEL: true
6461
run: coveralls --rcfile=setup.cfg --service=github
62+
63+
finish:
64+
name: Finish Coverage Analysis
65+
needs: build
66+
runs-on: ubuntu-latest
67+
steps:
68+
- name: Coveralls Finished
69+
env:
70+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71+
run: |
72+
pip install --upgrade coveralls
73+
coveralls --service=github --finish

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.0.2] - ?????
6+
- Updated coupling to coveralls
7+
- Updated package version for security issue in sphinx
8+
59
## [1.0.1] - 2022-01-04
610
- Added pyproject.toml to support systems without numpy.
711
- Modified manifest.ini to include version.txt

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ numpydoc
44
ipython
55
pandas
66
pysat
7-
readthedocs-sphinx-search==0.1.1
7+
readthedocs-sphinx-search==0.3.2
88
scipy
99
sphinx_rtd_theme==1.0.0
1010
sphinx==4.2.0

0 commit comments

Comments
 (0)