Skip to content

Commit 471eca1

Browse files
authored
Merge pull request #57 from nexB/release/0.6.3
Prepare for release v0.6.3
2 parents a94b906 + 1720542 commit 471eca1

9 files changed

+18
-8
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
Changelog
22
=========
33

4+
v0.6.3
5+
------
6+
7+
- Ensure to filter out top level dependencies on the basis of their environment markers
8+
- Do not ignore files on basis of name
9+
10+
v0.6.2
11+
------
412

13+
- Ignore invalid requirement files on basis of name
14+
- Use netrc file from home directory if not present
515

616
v0.6.1
717
------

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ python_requires = >=3.6.*
5555

5656
install_requires =
5757
attrs >= 18.1, !=20.1.0
58-
click >= 6.7, !=7.0
58+
click > 7.0
5959
colorama >= 0.3.9
6060
commoncode >= 30.0.0
6161
dparse2 >= 0.6.1

src/python_inspector/resolve_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
TRACE = False
3232

33-
__version__ = "0.5.0"
33+
__version__ = "0.6.3"
3434

3535
DEFAULT_PYTHON_VERSION = "38"
3636
PYPI_SIMPLE_URL = "https://pypi.org/simple"

tests/data/default-url-expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.5.0",
5+
"tool_version": "0.6.3",
66
"options": [
77
"--specifier zipp==3.8.0",
88
"--index-url https://pypi.org/simple",

tests/data/pinned-requirements.txt-expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.5.0",
5+
"tool_version": "0.6.3",
66
"options": [
77
"--index-url https://pypi.org/simple",
88
"--python-version 38",

tests/data/single-url-except-simple-expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.5.0",
5+
"tool_version": "0.6.3",
66
"options": [
77
"--specifier flask",
88
"--index-url https://pypi.org/simple",

tests/data/single-url-expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.5.0",
5+
"tool_version": "0.6.3",
66
"options": [
77
"--specifier zipp==3.8.0",
88
"--index-url https://pypi.org/simple",

tests/data/tilde_req-expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.5.0",
5+
"tool_version": "0.6.3",
66
"options": [
77
"--specifier zipp~=3.8.0",
88
"--index-url https://pypi.org/simple",

tests/test_resolution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def test_without_supported_wheels():
145145
"pkg:pypi/[email protected]",
146146
"pkg:pypi/[email protected]",
147147
"pkg:pypi/[email protected]",
148-
"pkg:pypi/[email protected].0",
148+
"pkg:pypi/[email protected].1",
149149
"pkg:pypi/[email protected]",
150150
]
151151

0 commit comments

Comments
 (0)