Skip to content

Commit 161277a

Browse files
committed
update actions, add MANIFEST
1 parent 6142a7f commit 161277a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
python-version: [3.7, 3.8, 3.9]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
@@ -45,4 +45,4 @@ jobs:
4545
unset NUMBA_DISABLE_JIT
4646
coverage report -m
4747
- name: Upload Coverage to Codecov
48-
uses: codecov/codecov-action@v1
48+
uses: codecov/codecov-action@v3

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include requirements.txt
2+
include COPYING

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'permutations_stats': 'permutations_stats',
1313
'permutations_stats.tests': 'permutations_stats/tests'
1414
},
15-
python_requires='>3.7',
15+
python_requires='>=3.7',
1616
install_requires=["numpy", "numba"],
1717
packages=['permutations_stats', 'permutations_stats.tests'],
1818
url='https://github.com/trevismd/permutations-stats',

0 commit comments

Comments
 (0)