Skip to content

Commit

Permalink
bump versions (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-chambers authored Nov 8, 2021
1 parent 57ccedc commit 7ac3d79
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v1
Expand Down
1 change: 1 addition & 0 deletions obsplus/events/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def attach_all_resource_ids(event: Event):
for rid, parent, attr in yield_obj_parent_attr(event, ResourceIdentifier):
if attr != "resource_id" and rid.id in rid_to_object:
rid.set_referred_object(rid_to_object[rid.id])
event.scope_resource_ids()


@validator("obsplus", Event)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from setuptools import setup

# define python versions
python_version = (3, 6) # tuple of major, minor version requirement
python_version = (3, 7) # tuple of major, minor version requirement
python_version_str = str(python_version[0]) + "." + str(python_version[1])

# produce an error message if the python version is less than required
Expand Down Expand Up @@ -120,9 +120,9 @@ def load_file(path):
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
],
test_suite="tests",
Expand Down

0 comments on commit 7ac3d79

Please sign in to comment.