Skip to content

Commit 5efb301

Browse files
authored
Merge pull request #3656 from GNS3/release/v2.2.51
release/v2.2.51
2 parents bd15734 + 23e0520 commit 5efb301

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 2.2.51 07/11/2024
4+
5+
* Python 3.13 support
6+
* Upgrade dependencies
7+
* Add keyboard shortcut for Add Link
8+
39
## 2.2.50 21/10/2024
410

511
* Fix issue when pid file contains invalid data

gns3/crash_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CrashReport:
5050
Report crash to a third party service
5151
"""
5252

53-
DSN = "https://2f7ebda845810e764bfd049a40cc09e3@o19455.ingest.us.sentry.io/38506"
53+
DSN = "https://1d34173f3470d2bd89c355deccbc9c40@o19455.ingest.us.sentry.io/38506"
5454
_instance = None
5555

5656
def __init__(self):

gns3/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# or negative for a release candidate or beta (after the base version
2424
# number has been incremented)
2525

26-
__version__ = "2.2.50"
27-
__version_info__ = (2, 2, 50, 0)
26+
__version__ = "2.2.51"
27+
__version_info__ = (2, 2, 51, 0)
2828

2929
if "dev" in __version__:
3030
try:

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jsonschema>=4.23,<4.24
2-
sentry-sdk==2.12,<2.13 # optional dependency
3-
psutil==6.0.0
2+
sentry-sdk>=2.17,<2.18 # optional dependency
3+
psutil>=6.1.0
44
distro>=1.9.0
5-
truststore>=0.9.1; python_version >= '3.10'
5+
truststore>=0.10.0; python_version >= '3.10'
66
importlib-resources>=1.3; python_version < '3.9'

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ def run_tests(self):
7979
include_package_data=True,
8080
package_data={"gns3": ["configs/*.txt", "schemas/*.json"]},
8181
platforms="any",
82-
python_requires='>=3.8',
83-
setup_requires=["setuptools>=17.1"],
82+
python_requires=">=3.8",
83+
setup_requires=["setuptools>=61.0"],
8484
classifiers=[
8585
"Development Status :: 5 - Production/Stable",
8686
"Environment :: X11 Applications :: Qt",
@@ -98,6 +98,7 @@ def run_tests(self):
9898
"Programming Language :: Python :: 3.10",
9999
"Programming Language :: Python :: 3.11",
100100
"Programming Language :: Python :: 3.12",
101+
"Programming Language :: Python :: 3.13",
101102
"Programming Language :: Python :: Implementation :: CPython",
102103
],
103104
)

0 commit comments

Comments
 (0)