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

pin dependencies #173

Merged
merged 3 commits into from
Nov 30, 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
13 changes: 13 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Publish

on:
push:
tags:
- v*

jobs:
Publish:
uses: inveniosoftware/workflows/.github/workflows/pypi-publish.yml@master
secrets: inherit
with:
babel-compile-catalog: true
33 changes: 0 additions & 33 deletions .github/workflows/pypi-release.yml

This file was deleted.

48 changes: 2 additions & 46 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2020 CERN.
# Copyright (C) 2022 Graz University of Technology.
# Copyright (C) 2022-2024 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -26,48 +26,4 @@ on:

jobs:
Tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.8, 3.9]
requirements-level: [pypi]
db-service: [postgresql12, postgresql13, postgresql14, mysql8]

env:
DB: ${{ matrix.DB }}
EXTRAS: "tests"

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Generate dependencies
run: |
pip install wheel requirements-builder
requirements-builder -e "$EXTRAS" ${{ matrix.requirements-file }} --level=${{ matrix.requirements-level }} setup.py > .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt

- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt') }}

- name: Install dependencies
run: |
pip install -r .${{matrix.requirements-level}}-${{ matrix.python-version }}-requirements.txt -c constraints-${{matrix.requirements-level}}.txt
pip install .[$EXTRAS]
pip freeze
docker --version
docker-compose --version

- name: Run translations test
run: ./run-i18n-tests.sh

- name: Run tests
run: |
./run-tests.sh
uses: inveniosoftware/workflows/.github/workflows/tests-python.yml@master
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
..
This file is part of Invenio.
Copyright (C) 2015-2023 CERN.
Copyright (C) 2024 Graz University of Technology.

Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.

Changes
=======

Version 3.0.1 (release 2024-11-30)

- setup: change to reusable workflows
- setup: pin dependencies
- i18n:push translations
- tests: check existing username case-insensitive

Version 3.0.0 (released 2024-03-22)

- breaking change: remove breadcrumbs usage
Expand Down
3 changes: 2 additions & 1 deletion invenio_userprofiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2015-2018 CERN.
# Copyright (C) 2024 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -30,7 +31,7 @@
from .ext import InvenioUserProfiles
from .models import UserProfile, UserProfileProxy

__version__ = "3.0.0"
__version__ = "3.0.1"

__all__ = (
"__version__",
Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This file is part of Invenio.
# Copyright (C) 2015-2022 CERN.
# Copyright (C) 2021 TU Wien.
# Copyright (C) 2022-2023 Graz University of Technology.
# Copyright (C) 2022-2024 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -28,15 +28,15 @@ packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
invenio-accounts>=5.0.0
invenio-accounts>=5.0.0,<6.0.0
invenio-i18n>=2.0.0,<3.0.0

[options.extras_require]
tests =
pytest-black-ng>=0.4.0
pytest-invenio>=1.4.7
invenio-db[mysql,postgresql,versioning]>=1.0.14
invenio-app>=1.4.0
pytest-invenio>=1.4.7,<3.0.0
invenio-db[mysql,postgresql,versioning]>=1.0.14,<2.0.0
invenio-app>=1.4.0,<2.0.0
sphinx>=4.5
admin =
# empty for backward compatibility
Expand Down