`.*` is still broken with `!=`:

python-kubernetes:

python-10.0.1/requirements.txt
`websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* `

`error: Illegal char '*' (0x2a) in: 0.42.*`


`.*` is still broken with `>=`:

python-fsleyes:

fsleyes-0.32.0/fsleyes.egg-info/requires.txt
`nibabel>=2.3.*`

`error: Illegal char '*' (0x2a) in: 2.3.*`


The code explicitly only work with `== ...*` but not other specs:

```python
elif spec[0] == '==' and spec[1].endswith('.*'):
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/951#issuecomment-576382832
_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to