Skip to content

Commit

Permalink
Bump requirements-parser from 0.10.2 to 0.11.0 (#1435)
Browse files Browse the repository at this point in the history
* Bump requirements-parser from 0.10.2 to 0.11.0

Bumps [requirements-parser](https://github.com/madpah/requirements-parser) from 0.10.2 to 0.11.0.
- [Release notes](https://github.com/madpah/requirements-parser/releases)
- [Changelog](https://github.com/madpah/requirements-parser/blob/main/CHANGELOG.md)
- [Commits](madpah/requirements-parser@v0.10.2...v0.11.0)

---
updated-dependencies:
- dependency-name: requirements-parser
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Import fixes

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Adam Stus <adam.stus@snowflake.com>
  • Loading branch information
dependabot[bot] and sfc-gh-astus authored Sep 3, 2024
1 parent 471b7ac commit a0d82eb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [
"packaging",
"rich==13.7.1",
"requests==2.32.3",
"requirements-parser==0.10.2",
"requirements-parser==0.11.0",
"setuptools==70.3.0",
'snowflake.core==0.8.0; python_version < "3.12"',
"snowflake-connector-python[secure-local-storage]==3.12.1",
Expand Down
2 changes: 1 addition & 1 deletion snyk/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PyYAML==6.0.1
packaging
rich==13.7.1
requests==2.32.3
requirements-parser==0.10.2
requirements-parser==0.11.0
setuptools==70.3.0
snowflake.core==0.8.0; python_version < "3.12"
snowflake-connector-python[secure-local-storage]==3.12.1
Expand Down
2 changes: 1 addition & 1 deletion tests_integration/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def test_package_with_native_libraries(self, directory_for_test, runner):

@pytest.mark.integration
def test_incorrect_input(self, runner):
from pkg_resources._vendor.packaging.requirements import InvalidRequirement
from packaging.requirements import InvalidRequirement

with pytest.raises(InvalidRequirement) as err:
runner.invoke_with_connection(
Expand Down
2 changes: 1 addition & 1 deletion tests_integration/test_snowpark.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ def test_ignore_anaconda_uses_version_from_zip(

@pytest.mark.integration
def test_incorrect_requirements(project_directory, runner, alter_requirements_txt):
from pkg_resources._vendor.packaging.requirements import InvalidRequirement
from packaging.requirements import InvalidRequirement

with project_directory("snowpark") as tmp_dir:
alter_requirements_txt(
Expand Down

0 comments on commit a0d82eb

Please sign in to comment.