Compare commits

...
Sign in to create a new pull request.

10 commits

Author SHA1 Message Date
Lumir Balhar
588a84d0f9 Update to 1.10.0 (rhbz#2419277) 2025-12-08 11:54:56 +01:00
Python Maint
8bacaeb4d7 Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 12:30:34 +02:00
Python Maint
7006dae939 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 12:59:43 +02:00
Fedora Release Engineering
d3c2d9e58a Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-24 21:36:20 +00:00
Python Maint
db6419cc79 Rebuilt for Python 3.14 2025-06-04 01:04:23 +02:00
Packit
c87ba0b59e Update to 1.9.0 (rhbz#2341735) 2025-01-23 11:25:36 +00:00
Fedora Release Engineering
dbdaf23bd2 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-17 17:34:33 +00:00
Lumir Balhar
2cda3f0080 Remove duplicated tmt plan 2024-10-30 13:27:11 +01:00
Lumir Balhar
1ad553d99d Fix CI by fixing test dependencies 2024-10-29 19:49:03 +01:00
Packit
1907e78820 Update to 1.8.1 (rhbz#2322513) 2024-10-29 18:01:46 +00:00
6 changed files with 11 additions and 17 deletions

3
.gitignore vendored
View file

@ -30,3 +30,6 @@
/v1.6.0.tar.gz
/v1.7.0.tar.gz
/v1.8.0.tar.gz
/v1.8.1.tar.gz
/v1.9.0.tar.gz
/v1.10.0.tar.gz

View file

@ -1,3 +1,3 @@
This repository is maintained by packit.
https://packit.dev/
The file was generated using packit 0.99.0.post1.dev29+g2e75e6ff.
The file was generated using packit 0.106.0.post1.dev8+g521f1e1d.

View file

@ -6,7 +6,7 @@
%endif
Name: micropipenv
Version: 1.8.0
Version: 1.10.0
Release: %autorelease
Summary: A simple wrapper around pip to support Pipenv and Poetry files
@ -31,6 +31,10 @@ converting them to pip-tools compatible output.
%autosetup
# Remove shebang line from the module
sed -i '1{\@^#!/usr/bin/env python@d}' %{name}.py
# Remove virtualenv requirement from tox.ini
sed -i '/requires = virtualenv/d' tox.ini
# Do not install wheel in testing venvs
sed -i 's/[^ ]*wheel==0.45.1.*/pass/' tests/conftest.py
%generate_buildrequires
%pyproject_buildrequires -r %{?with_tests:-t} -x toml

View file

@ -1,14 +0,0 @@
summary: Integration tests for micropipenv
discover:
how: fmf
execute:
how: tmt
prepare:
- name: install git-core
how: install
package:
- git-core
- micropipenv
- name: clone upstream test data
how: shell
script: git clone https://github.com/thoth-station/micropipenv.git /tmp/micropipenv

View file

@ -1 +1 @@
SHA512 (v1.8.0.tar.gz) = 3402379c8b094ccb12c8dc2447a71412ae2aafb49082ef0be148b71ed110cc6ad11a7f15fb23fb6cdb0b7d8e9f9f6c23119dcf4b649468529121330a37318a7f
SHA512 (v1.10.0.tar.gz) = 8508777d2cc04f3aa9faf834a75154d5d3aa8e24ca5551febce4c40c78d32b4cae0753bdf26fc6118b2033852bda4370ef869949389e745991a46b9d44981cf5

View file

@ -4,6 +4,7 @@ require:
- python3-test
- python3-pip
- python3-pytest
- python3-pytest-venv
# flexmock installed from PyPI, not available in RHEL
test: |
pip install flexmock==0.12.1 &&