How to update .deb from local files and ignore dependensies?

Hi all again.

I’ve a Debian server with installed Foundation DB 7 .
According to FDB architecture, you need to install two packages on server:

  • foundationdb-clients-7.3.60
  • foundationdb-server-7.3.60

I did fresh install with this code, using locally downloaded packages:

................................
- name: Install by APT | Package installation (version {{ package_version }})
  ansible.builtin.apt:
    deb: "{{ ansible_user_dir }}/{{ item.path | basename }}"
    state: present
    install_recommends: true
  with_items: "{{ deb_names.files | sort(attribute='path') }}"
  become: true

And it works fine.

But when I try to update these packages with locally downloaded files from 7.3.60 → 7.3.71 with the same code on this Debian server I got an error:

Problem: cannot install both foundationdb-clients-7.3.71-1.x86_64 from @commandline and foundationdb-clients-7.3.71-1.x86_64 from @System\n  - package foundationdb-server-7.3.71-1.x86_64 from @System requires foundationdb-clients = 7.3.71-1, but none of the providers can be installed 

When I did it on RedHat server - there is no problem.

Could you, please, help to solve this?