Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix dojson version #349

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 2 additions & 18 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install python dependencies
run: |
python -m pip install pip==24.0
pip install setuptools wheel coveralls check-manifest
pip install setuptools wheel check-manifest
pip install -e .[tests]
- name: Show python dependencies
Expand All @@ -55,22 +55,6 @@ jobs:
run: |
docker-compose -f docker-compose.test.py2.yml run --rm ${{ matrix.suite }}
- name: Coveralls
uses: AndreMiras/coveralls-python-action@v20201129
with:
parallel: true
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.test_number }}

Coveralls:
needs: Test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@v20201129
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
Release:
if: ${{ github.event_name == 'push' }}
Expand All @@ -85,7 +69,7 @@ jobs:
- name: Install python dependencies
run: |
pip install --user --upgrade pip
pip --no-cache-dir install --user setuptools wheel coveralls check-manifest
pip --no-cache-dir install --user setuptools wheel check-manifest
pip --no-cache-dir install --user -e .[tests]
- name: Build package
Expand Down
3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
.. image:: https://img.shields.io/travis/inspirehep/hepcrawl.svg
:target: https://travis-ci.org/inspirehep/hepcrawl

.. image:: https://img.shields.io/coveralls/inspirehep/hepcrawl.svg
:target: https://coveralls.io/r/inspirehep/hepcrawl

.. image:: https://img.shields.io/github/tag/inspirehep/hepcrawl.svg
:target: https://github.com/inspirehep/hepcrawl/releases

Expand Down
4 changes: 0 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
<img src="https://travis-ci.org/inspirehep/hepcrawl.png?branch=master"
alt="travis-ci badge"/>
</a>
<a href="https://coveralls.io/r/inspirehep/hepcrawl">
<img src="https://coveralls.io/repos/inspirehep/hepcrawl/badge.png?branch=master"
alt="coveralls.io badge"/>
</a>
</p>


Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
'autosemver~=0.2',
"backports.tempfile==1.0",
'boto3~=1.14',
'dojson==1.4.0',
'inspire-schemas~=61.5',
'inspire-dojson~=63.0',
'inspire-utils~=3.0,>=3.0.0',
Expand Down
Loading