Skip to content

Commit

Permalink
Merge branch '2.2' into style_edit_width_and_height
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Oct 24, 2023
2 parents 2dd9d61 + ed88466 commit 91bae81
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build and run Docker image
run: |
docker build -t gns3-gui-test .
Expand Down
5 changes: 5 additions & 0 deletions gns3/schemas/appliance.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
"format": "uri",
"title": "Website of the vendor"
},
"vendor_logo_url": {
"type": "string",
"format": "uri",
"title": "Link to the vendor logo (used by the GNS3 marketplace)"
},
"documentation_url": {
"type": "string",
"format": "uri",
Expand Down
5 changes: 5 additions & 0 deletions gns3/schemas/appliance_v8.json
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,11 @@
"format": "uri",
"title": "Website of the vendor"
},
"vendor_logo_url": {
"type": "string",
"format": "uri",
"title": "Link to the vendor logo (used by the GNS3 marketplace)"
},
"documentation_url": {
"type": "string",
"format": "uri",
Expand Down
4 changes: 2 additions & 2 deletions gns3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

__version__ = "2.2.43"
__version__ = "2.2.44.dev1"

__version_info__ = (2, 2, 43, 0)
__version_info__ = (2, 2, 44, 99)

if "dev" in __version__:
try:
Expand Down
2 changes: 2 additions & 0 deletions mac-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
-rrequirements.txt

PyQt5-Qt5==5.15.2
PyQt5-sip==12.12.2
PyQt5==5.15.9
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
jsonschema>=4.17.3,<4.18; python_version >= '3.7' # v4.17.3 is the last version to support Python 3.7
jsonschema==3.2.0; python_version < '3.7' # v3.2.0 is the last version to support Python 3.6
sentry-sdk==1.31.0,<1.32
psutil==5.9.5
sentry-sdk==1.32.0,<1.33
psutil==5.9.6
distro>=1.8.0
truststore>=0.8.0; python_version >= '3.10'
importlib-resources>=1.3; python_version <= '3.9'
importlib-resources>=1.3; python_version < '3.9'
setuptools>=60.8.1; python_version >= '3.7'
setuptools==59.6.0; python_version < '3.7' # v59.6.0 is the last version to support Python 3.6
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def run_tests(self):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
],
)
2 changes: 1 addition & 1 deletion win-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-rrequirements.txt

PyQt5==5.15.9 # pyup: ignore
PyQt5==5.15.10 # pyup: ignore
pywin32==306 # pyup: ignore

0 comments on commit 91bae81

Please sign in to comment.