Skip to content

Commit

Permalink
Merge pull request #1680 from rmartin16/dateutil
Browse files Browse the repository at this point in the history
Remove DeprecationWarning suppression with python-dateutil==2.9.0 release
  • Loading branch information
freakboy3742 committed Mar 5, 2024
2 parents f6b4dac + 54fe11e commit 037a7f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions changes/1428.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The error suppression for a deprecated API use from python-dateutil was removed with its release of version 2.9.0.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ dependencies = [
# If the package uses calver, we don't pin the upper version, as the upper version
# provides no basis for determining API stability.
#
# See beeware/briefcase#1663 to bump <2.6.0 pin
"cookiecutter >= 2.3.1, < 2.6.0",
"cookiecutter >= 2.3.1, < 2.6.0", # See beeware/briefcase#1663 to bump <2.6.0 pin
"dmgbuild >= 1.6, < 2.0; sys_platform == 'darwin'",
"GitPython >= 3.1, < 4.0",
"platformdirs >= 2.6, < 5.0",
"psutil >= 5.9, < 6.0",
"python-dateutil >= 2.9.0.post0", # transitive dependency (beeware/briefcase#1428)
"requests >= 2.28, < 3.0",
"rich >= 12.6, < 14.0",
"tomli >= 2.0, < 3.0; python_version <= '3.10'",
Expand Down Expand Up @@ -232,8 +232,6 @@ multi_line_output = 3
testpaths = ["tests"]
filterwarnings = [
"error",
# suppress until python-dateutil>2.8.2 is released (https://github.com/dateutil/dateutil/issues/1284)
"ignore:.*datetime.utcfromtimestamp\\(\\) is deprecated.*:DeprecationWarning:",
]

# need to ensure build directories aren't excluded from recursion
Expand Down

0 comments on commit 037a7f5

Please sign in to comment.