Skip to content

Commit

Permalink
Merge pull request #3656 from GNS3/release/v2.2.51
Browse files Browse the repository at this point in the history
release/v2.2.51
  • Loading branch information
grossmj authored Nov 7, 2024
2 parents bd15734 + 23e0520 commit 5efb301
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 2.2.51 07/11/2024

* Python 3.13 support
* Upgrade dependencies
* Add keyboard shortcut for Add Link

## 2.2.50 21/10/2024

* Fix issue when pid file contains invalid data
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class CrashReport:
Report crash to a third party service
"""

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

def __init__(self):
Expand Down
4 changes: 2 additions & 2 deletions gns3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

__version__ = "2.2.50"
__version_info__ = (2, 2, 50, 0)
__version__ = "2.2.51"
__version_info__ = (2, 2, 51, 0)

if "dev" in __version__:
try:
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
jsonschema>=4.23,<4.24
sentry-sdk==2.12,<2.13 # optional dependency
psutil==6.0.0
sentry-sdk>=2.17,<2.18 # optional dependency
psutil>=6.1.0
distro>=1.9.0
truststore>=0.9.1; python_version >= '3.10'
truststore>=0.10.0; python_version >= '3.10'
importlib-resources>=1.3; python_version < '3.9'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def run_tests(self):
include_package_data=True,
package_data={"gns3": ["configs/*.txt", "schemas/*.json"]},
platforms="any",
python_requires='>=3.8',
setup_requires=["setuptools>=17.1"],
python_requires=">=3.8",
setup_requires=["setuptools>=61.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
Expand All @@ -98,6 +98,7 @@ def run_tests(self):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
],
)

0 comments on commit 5efb301

Please sign in to comment.