Skip to content

Commit

Permalink
chore: updates and fix conda forge build (Merge pull request #768 fro…
Browse files Browse the repository at this point in the history
…m Hugovdberg/chore_updates_and_fix_conda)
  • Loading branch information
Hugovdberg authored Jun 24, 2024
2 parents 7cdb49e + 0552067 commit c2460bf
Show file tree
Hide file tree
Showing 7 changed files with 126 additions and 62 deletions.
63 changes: 63 additions & 0 deletions .pyup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# configure updates globally
# default: all
# allowed: all, insecure, False
update: all

# configure dependency pinning globally
# default: True
# allowed: True, False
pin: True

# set the default branch
# default: empty, the default branch on GitHub
branch: develop

# update schedule
# default: empty
# allowed: "every day", "every week", ..
schedule: "every two weeks on monday"

# search for requirement files
# default: True
# allowed: True, False
search: True

# Specify requirement files by hand, default is empty
# default: empty
# allowed: list
# requirements:
# - requirements/staging.txt:
# # update all dependencies and pin them
# update: all
# pin: True
# - requirements/dev.txt:
# # don't update dependencies, use global 'pin' default
# update: False
# - requirements/prod.txt:
# # update insecure only, pin all
# update: insecure
# pin: True

# add a label to pull requests, default is not set
# requires private repo permissions, even on public repos
# default: empty
label_prs: update

# assign users to pull requests, default is not set
# requires private repo permissions, even on public repos
# default: empty
# assignees:
# - carl
# - carlsen

# configure the branch prefix the bot is using
# default: pyup-
branch_prefix: pyup/

# set a global prefix for PRs
# default: empty
# pr_prefix: "Bug #12345"

# allow to close stale PRs
# default: True
# close_prs: True
2 changes: 1 addition & 1 deletion PIconnect/AFSDK.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __fallback():

from ._typing import AF as _af
from ._typing import AF_SDK_VERSION as _AF_SDK_version
from ._typing import dotnet as _System
from ._typing import System as _System

return _af, _System, _AF_SDK_version

Expand Down
2 changes: 1 addition & 1 deletion PIconnect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# pragma pylint: enable=unused-import

__version__ = "0.11.1"
__version__ = "0.11.2"
__sdk_version = tuple(int(x) for x in AF.PISystems().Version.split("."))

__all__ = [
Expand Down
3 changes: 2 additions & 1 deletion PIconnect/_typing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""Type stubs for the AF SDK and dotnet libraries."""

from . import dotnet as System # noqa: I001
from . import AF

AF_SDK_VERSION = "2.7_compatible"

__all__ = ["AF", "AF_SDK_VERSION"]
__all__ = ["AF", "AF_SDK_VERSION", "System"]
112 changes: 56 additions & 56 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ convention = "numpy"


[tool.bumpversion]
current_version = "0.11.1"
current_version = "0.11.2"
tag = false
commit = true
message = "chore: Bump version: {current_version} → {new_version}"
Expand Down
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ click==8.1.7; python_version >= '3.7'
codacy-coverage==1.3.11
codecov==2.1.13; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
colorama==0.4.6; sys_platform == 'win32'
coverage[toml]==7.5.3; python_version >= '3.8'
coverage[toml]==7.5.4; python_version >= '3.8'
dill==0.3.8; python_version >= '3.11'
docutils==0.21.2; python_version >= '3.9'
idna==3.7; python_version >= '3.5'
imagesize==1.4.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
importlib-metadata==7.2.0; python_version >= '3.8'
importlib-metadata==7.2.1; python_version >= '3.8'
iniconfig==2.0.0; python_version >= '3.7'
isort==5.13.2; python_full_version >= '3.8.0'
jaraco.classes==3.4.0; python_version >= '3.8'
Expand Down

0 comments on commit c2460bf

Please sign in to comment.