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

Release/v1.5.0 #43

Merged
merged 4 commits into from
Apr 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
7 changes: 3 additions & 4 deletions .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ ubuntu-latest, windows-latest ]
group: [ 1, 2 ]

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand All @@ -34,7 +33,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pytest-split matplotlib geopandas
pip install -e .
python -m pip install .["all"]

- name: Install specific dependencies (Windows)
if: matrix.os == 'windows-latest'
Expand All @@ -52,8 +51,8 @@ jobs:

- name: List all installed packages
run: |
pip list
python -m pip list

- name: Test with pytest
run: |
pytest --splits 2 --group ${{ matrix.group }} --pyargs simbench.test
python -m pytest --pyargs simbench.test
2 changes: 1 addition & 1 deletion .github/workflows/upload_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ jobs:
TWINE_REPOSITORY: pypi

- name: Sleep for 150s to make release available
uses: juliangruber/sleep-action@v1
uses: juliangruber/sleep-action@v2
with:
time: 300s
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
:target: https://www.simbench.net
:alt: SimBench logo

|

.. image:: https://badge.fury.io/py/simbench.svg
:target: https://pypi.python.org/pypi/simbench
:alt: PyPI
Expand Down
Loading