-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2901 from johannaengland/remove-python37-from-tes…
…t-matrix Drop support for Python 3.7
- Loading branch information
Showing
12 changed files
with
14 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ python: | |
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.7" | ||
python: "3.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Upgrade dependencies after dropping support for Python 3.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Drop support for Python 3.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
# ciscoconfparse 1.8 has a bug that prevents it from being imported on Python 3.7, | ||
# even though it claims compatibility with 3.7. | ||
ciscoconfparse<1.8.0 ; python_version < '3.8' | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "nav" | |
description = "Network Administration Visualized - A comprehensive, free Network Management System" | ||
authors = [{name="Sikt - Norwegian agency for shared services in education and research", email="[email protected]"}] | ||
readme = "README.rst" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.9" | ||
license = {text = "GPLv3"} | ||
keywords = ["nms", "snmp"] | ||
classifiers = [ | ||
|
@@ -16,10 +16,6 @@ classifiers = [ | |
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
] | ||
dynamic = ["version"] | ||
dependencies = [ | ||
"importlib_metadata; python_version < '3.8'", | ||
"importlib_resources; python_version < '3.9'", | ||
] | ||
|
||
|
||
[project.urls] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ psycopg2==2.9.9 # requires libpq to build | |
IPy==1.01 | ||
pyaml | ||
|
||
twisted~=23.8.0 # last version that still supports Python 3.7 | ||
twisted>=23.8.0 | ||
|
||
networkx==2.6.3 | ||
# Cannot be removed as long as qrcode is included | ||
|
@@ -37,9 +37,6 @@ libsass==0.15.1 | |
|
||
napalm==3.4.1 | ||
|
||
backports.zoneinfo ; python_version < '3.9' | ||
importlib_metadata ; python_version < '3.8' | ||
importlib_resources ; python_version < '3.9' | ||
git+https://github.com/Uninett/[email protected]#egg=drf-oidc-auth | ||
|
||
# The following modules are really sub-requirements of Twisted, not of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters