Skip to content

Commit 982b84f

Browse files
add
1 parent 54a1531 commit 982b84f

35 files changed

+4
-0
lines changed

.codecov.yml

100644100755
File mode changed.

.coveragerc

100644100755
File mode changed.

.github/workflows/python.yml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
architecture: x64
21+
env:
22+
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
2123

2224
- name: Install dependencies
2325
run: |
@@ -26,6 +28,8 @@ jobs:
2628
pip install -r requirements.txt
2729
pip install -r test-requirements.txt
2830
pip install build
31+
env:
32+
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
2933

3034
- name: Test with pytest
3135
run: |

.gitignore

100644100755
File mode changed.

AUTHORS.rst

100644100755
File mode changed.

CHANGES.rst

100644100755
File mode changed.

LICENSE.txt

100644100755
File mode changed.

README.rst

100644100755
File mode changed.

docs/Makefile

100644100755
File mode changed.

docs/_static/.gitignore

100644100755
File mode changed.

docs/authors.rst

100644100755
File mode changed.

docs/changes.rst

100644100755
File mode changed.

docs/conf.py

100644100755
File mode changed.

docs/index.rst

100644100755
File mode changed.

docs/license.rst

100644100755
File mode changed.

pysenal/__init__.py

100644100755
File mode changed.

pysenal/io/__init__.py

100644100755
File mode changed.

pysenal/io/file.py

100644100755
File mode changed.

pysenal/utils/__init__.py

100644100755
File mode changed.

pysenal/utils/logger.py

100644100755
File mode changed.

requirements.txt

100644100755
File mode changed.

setup.cfg

100644100755
File mode changed.

setup.py

100644100755
File mode changed.

test-requirements.txt

100644100755
File mode changed.

tests/__init__.py

100644100755
File mode changed.

tests/io/__init__.py

100644100755
File mode changed.

tests/io/test_file.py

100644100755
File mode changed.

tests/test_data/a.json

100644100755
File mode changed.

tests/test_data/a.jsonl

100644100755
File mode changed.

tests/test_data/a.jsonl.gz

100644100755
File mode changed.

tests/test_data/a.txt

100644100755
File mode changed.

tests/test_data/a.txt.gbk

100644100755
File mode changed.

tests/test_data/a.txt.gz

100644100755
File mode changed.

tests/utils/__init__.py

100644100755
File mode changed.

tests/utils/test_logger.py

100644100755
File mode changed.

0 commit comments

Comments
 (0)