Skip to content

Commit

Permalink
Run pynixify and update swagger
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kraus committed Oct 10, 2023
1 parent e8a5618 commit 25be5fc
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion faraday/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
See the file 'doc/LICENSE' for the license information
"""

__version__ = '4.6.0'
__version__ = '4.6.1'
__license_version__ = __version__
6 changes: 3 additions & 3 deletions faraday/openapi/faraday_swagger.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"info": {
"description": "The Faraday REST API enables you to interact with [our server](https://github.com/infobyte/faraday).\nUse this API to interact or integrate with Faraday server. This page documents the REST API, with HTTP response codes and example requests and responses.",
"title": "Faraday 4.6.0 API",
"title": "Faraday 4.6.1 API",
"version": "v3"
},
"security": {
Expand Down Expand Up @@ -983,10 +983,10 @@
}
},
"get": {
"summary": "Get a list of hosts.",
"tags": [
"Host"
],
"summary": "Get a list of Host.",
"responses": {
"200": {
"description": "Ok",
Expand Down Expand Up @@ -5788,4 +5788,4 @@
"name": "settings"
}
]
}
}
4 changes: 2 additions & 2 deletions pynixify/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ let

builtins.fetchTarball {
url =
"https://github.com/infobyte/nixpkgs/archive/de43d14a2dee45e6ada58f4eca867804c3bca151.tar.gz";
sha256 = "0xgsldyr5y3k5mfgq592ynnm8jy4j9b4clmfma266q0fy1bpyzkp";
"https://github.com/infobyte/nixpkgs/archive/952075315847102402c2148ff1b2a1f373db65f5.tar.gz";
sha256 = "14ywbx7l9xfvpg0z4rb6izr723hp4n02108k326gxxhwvl7fgd33";
};

packageOverrides = self: super: {
Expand Down
4 changes: 2 additions & 2 deletions pynixify/packages/faraday-plugins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

buildPythonPackage rec {
pname = "faraday-plugins";
version = "1.13.2";
version = "1.14.0";

src = fetchPypi {
inherit pname version;
sha256 = "0db1zsmv3lldi41d0av34p130srlyf2njgi33b6a1b3qk79kwgqd";
sha256 = "1kl7kzwm5rvhr74cnvc85h78fll3njizgqwxrj7hi7lpiwcic70c";
};

propagatedBuildInputs = [
Expand Down
2 changes: 1 addition & 1 deletion pynixify/packages/faradaysec/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

buildPythonPackage rec {
pname = "faradaysec";
version = "4.6.0";
version = "4.6.1";

src = lib.cleanSource ../../..;

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ colorama>=0.3.9
click>=8.0.1
flask>=1.1,<=2.1.3
Flask-SQLAlchemy>=2.3.1,<=2.5.1
flask-classful>=0.14
flask-classful>=0.14,<0.16
email_validator
Flask-WTF>=0.15.1,<=1.0.1
WTForms>=2.1
Expand Down Expand Up @@ -36,7 +36,7 @@ syslog-rfc5424-formatter>=1.1.1
simplekv>=0.13.0
Flask-KVSession-fork>=0.6.4
distro>=1.4.0
faraday-plugins>=1.13.2,<2.0.0
faraday-plugins>=1.14.0,<2.0.0
apispec>=6.3.0
apispec-webframeworks>=0.5.2
pyyaml
Expand Down

0 comments on commit 25be5fc

Please sign in to comment.