Skip to content

Commit

Permalink
Merge pull request #314 from EasyPost/upgrade_build
Browse files Browse the repository at this point in the history
chore: cleanup build deps
  • Loading branch information
Justintime50 committed Dec 5, 2023
2 parents e540a7f + f6aef46 commit 943e1ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples
Submodule examples updated 28 files
+1 −0 .gitignore
+1 −1 go.mod
+2 −2 go.sum
+6 −0 official/docs/csharp/current/api-keys/retrieve.cs
+33 −0 official/docs/csharp/current/pagination/get-next-page.cs
+7 −0 official/docs/curl/current/pagination/get-next-page.sh
+1 −1 official/docs/curl/current/shipping-insurance/insure.sh
+6 −0 official/docs/golang/current/api-keys/retrieve.go
+28 −0 official/docs/golang/current/pagination/get-next-page.go
+7 −1 official/docs/java/current/api-keys/retrieve.java
+24 −0 official/docs/java/current/pagination/get-next-page.java
+5 −5 official/docs/node/current/api-keys/retrieve.js
+15 −0 official/docs/node/current/pagination/get-next-page.js
+7 −6 official/docs/php/current/api-keys/retrieve.php
+13 −0 official/docs/php/current/pagination/get-next-page.php
+7 −6 official/docs/python/current/api-keys/retrieve.py
+14 −0 official/docs/python/current/pagination/get-next-page.py
+452 −0 official/docs/responses/pagination/pagination-get-next-page.json
+7 −6 official/docs/ruby/current/api-keys/retrieve.rb
+11 −0 official/docs/ruby/current/pagination/get-next-page.rb
+2 −2 official/guides/errors-guide/csharp/catch-error.cs
+3 −1 official/guides/errors-guide/golang/catch-error.go
+3 −3 official/guides/errors-guide/java/catch-error.java
+2 −2 official/guides/errors-guide/node/catch-error.js
+7 −3 official/guides/errors-guide/php/catch-error.php
+2 −2 official/guides/errors-guide/python/catch-error.py
+1 −1 official/guides/errors-guide/ruby/catch-error.rb
+7 −0 style_guides/csharp/.editorconfig
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,19 @@
DEV_REQUIREMENTS = [
"bandit==1.7.5",
"black==23.*",
"build==0.10.*",
"build==1.0.*;python_version>='3.8'", # TODO: remove python pin when 3.7 is dropped
"urllib3==1.*", # TODO: Pinned because vcrpy did a dumb and didn't pin urllib3
"flake8==5.*", # TODO: flake8 v6 requires Python 3.8.1+
"isort==5.*",
"mypy==1.3.*",
"pdoc==13.*",
"mypy==1.4.*", # TODO: mypy v1.5 requires Python 3.8+
"pdoc==13.*", # TODO: pdoc v14 requires Python 3.8+
"pytest-cov==4.*",
"pytest-vcr==1.*",
"pytest==7.*",
"twine==4.*",
"types-requests",
"types-urllib3",
"vcrpy==4.*",
"wheel==0.40.*",
"vcrpy==4.*", # TODO: vcrpy v5 requires Python 3.8+
]

with open("README.md", encoding="utf-8") as f:
Expand Down Expand Up @@ -69,6 +68,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 943e1ae

Please sign in to comment.