Skip to content

Commit

Permalink
<>[]: <Dependencies bump>
Browse files Browse the repository at this point in the history
[Loosen up versions]

[#55]
  • Loading branch information
Humberto Sanchez II committed Jan 17, 2024
1 parent cada8fa commit c1a331f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
pip install html-testRunner~=1.2.1
pip install attrdict3~=2.0.2
pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 wxPython
pip install codeallybasic==1.0.0
pip install codeallyadvanced==1.0.0
pip install codeallybasic==1.1.0
pip install codeallyadvanced==1.1.0
pip install pyutmodelv2~=2.1.0
pip install ogl~=2.1.0
pip install untanglepyut==2.1.0
pip install ogl~=2.1.5
pip install untanglepyut==2.1.5
pip install buildlackey~=1.6.3
- run:
name: run tests
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ keywords = ['pyut', 'python', 'xml']

dependencies = [
'wxPython==4.2.1',
'codeallybasic==1.0.0',
'codeallyadvanced==1.0.0',
'codeallybasic>=1.1.0',
'codeallyadvanced>=1.1.0',
'pyutmodelv2==2.1.0',
'ogl==2.1.0',
'untanglepyut==2.1.0',
'ogl>=2.1.5',
'untanglepyut>=2.1.5',
]

[project.urls]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ types-setuptools==69.0.0.20240115

wxPython~=4.2.1

codeallybasic==1.0.0
codeallyadvanced==1.0.0
codeallybasic==1.1.0
codeallyadvanced==1.1.0
pyutmodelv2==2.1.0
ogl==2.1.0
untanglepyut==2.1.0
ogl==2.1.5
untanglepyut==2.1.5
2 changes: 1 addition & 1 deletion src/oglio/IDFactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class IDFactory(Singleton):
A user-defined class or class object is an instance of the object named `type`, which is itself a `class`. Classes
are created from `type`, or in other words:
> A class is an instance of the class `type`. In Python 3 there is no difference between `classes` and `types`
A class is an instance of the class `type`. In Python 3, there is no difference between `classes` and `types`.
"""
nextID: int = 1

Expand Down
2 changes: 1 addition & 1 deletion src/oglio/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = '2.1.0'
__version__: str = '2.1.5'
2 changes: 0 additions & 2 deletions tests/ProjectTestBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
from pyutmodelv2.PyutObject import PyutObject
from pyutmodelv2.PyutObject import infiniteSequence

from oglio.toXmlV10.BaseToDom import IDFactory


class ProjectTestBase(UnitTestBaseW):

Expand Down

0 comments on commit c1a331f

Please sign in to comment.