1. 06 Apr, 2020 7 commits
  2. 18 Oct, 2019 1 commit
  3. 17 Sep, 2019 1 commit
    • Sean Mooney's avatar
      remove inspect.getargspec deprecation warning · 5d1f3225
      Sean Mooney authored
      In python 3 inspect.getargspec is deprecated and
      replaced with inspect.getfullargspec which does not
      exist on python 2.7. This change uses six to select
      the correct version to use based on the python version
      used.
      
      Change-Id: I234a3509ff850d0c5616ebcfa240212b03db9e76
      Closes-Bug: #1814288
      5d1f3225
  4. 19 Jul, 2019 1 commit
  5. 18 Jul, 2019 3 commits
  6. 16 Jul, 2019 2 commits
  7. 10 Jul, 2019 4 commits
    • Matt Riedemann's avatar
      Claim support for python 3.6 · 67d2bb26
      Matt Riedemann authored
      This adds the voting and gating openstack-tox-py36 job
      and adds python 3.6 to the classifiers list.
      
      Change-Id: Ida2349de534399103e5d6f294a7e771910188ee4
      67d2bb26
    • Matt Riedemann's avatar
      Claim support for python 3.5 · 578f533c
      Matt Riedemann authored
      This makes the openstack-tox-py35 job voting and gating
      and adds python 3.5 to the classifiers list.
      
      Change-Id: I11c8cd0e33e0609d740f5742096438a2395b28ed
      578f533c
    • Matt Riedemann's avatar
      Remove test-requirements-py*.txt files · 1cc62d6e
      Matt Riedemann authored
      We can control python version sensitive dependencies
      in the single test-requirements.txt file so we can
      drop the version-specific files. This should also make
      the openstack-tox-py35 job start passing.
      
      Change-Id: Ic3fa2c4417092e387ac5d177be75a22050a6f857
      1cc62d6e
    • Matt Riedemann's avatar
      Add bindep support · 3ee28fe6
      Matt Riedemann authored
      This adds a minimal bindep.txt to install mysql and postgresql
      dependencies (copied from nova's bindep.txt). This is needed
      now to get python jobs (pep8,py27,etc) working in the gate.
      
      Change-Id: I4b7bccdb7cebd95753e8cd931846213f400aa652
      Closes-Bug: #1836087
      3ee28fe6
  8. 15 May, 2019 6 commits
    • Matt Riedemann's avatar
      Remove py26 tox targets · 078ffc62
      Matt Riedemann authored
      Support for python 2.6 was dropped in commit
      8266c8de but the
      tox targets were missed, so they are removed here.
      
      Change-Id: I2271717ce4a35183d2b773063564cbaf774fdfb0
      078ffc62
    • Zuul's avatar
      Merge "Import zuul jobs" · 421e8602
      Zuul authored
      421e8602
    • Zuul's avatar
      Merge "Use mysqlclient" · 3239c42b
      Zuul authored
      3239c42b
    • Andreas Jaeger's avatar
      Import zuul jobs · e922c240
      Andreas Jaeger authored
      Add the project-specific tox py27sa07 job to this repo, convert it
      from legacy-sqlalchemy-migrate-tox-py27sa07 to Zuul v3.
      
      Also, import other jobs from project-config so that the jobs
      are managed by the team in-tree.
      
      Change-Id: I9296b3e40246ab89655411b660c5ba45bc9cf2ff
      e922c240
    • Zuul's avatar
      Merge "Fix docs build" · e85f8ba6
      Zuul authored
      e85f8ba6
    • Andreas Jaeger's avatar
      Fix docs build · abb234e1
      Andreas Jaeger authored
      Fixes for docs build:
      * Use doc/requirements to follow changes in OpenStack CI for the docs
        building, add a tox environment for this.
      * Remove reference to "project's download page", the link was removed in
        change I2db594d279e1229e5b1600cecad86fe0c3612115 and now we have a
        dead link that errors building if warnings are treated as errors.
      * Change I2db594d279e1229e5b1600cecad86fe0c3612115 added a column for
        DB2 header but not for any entries, enhance table with extra column.
        This fixes building of the table if warnings are treated as errors.
      * Update to sphinx 1.6.x since that is what is used in OpenStack CI job,
        remove issuetracker, it does not work with sphinx 1.6 anymore.
      * Disable html_static_path - the content does not exist
      * Use python3 for docs building
      
      Change-Id: I76ee4d6dc45f9b04115f093951ae8b745f3ac026
      abb234e1
  9. 19 Apr, 2019 1 commit
  10. 26 Mar, 2019 5 commits
  11. 21 Feb, 2019 1 commit
  12. 22 Jan, 2019 1 commit
    • Matt Riedemann's avatar
      Change title in README.rst · 8acab2cd
      Matt Riedemann authored
      This is needed to be able to release to pypi:
      
      $ python3 setup.py check --restructuredtext --strict
      running check
      warning: check: Duplicate implicit target name: "sqlalchemy-migrate".
      
      Change-Id: I26dd765a5273199d6666dd9ed618dc8189a2e8ed
      8acab2cd
  13. 21 Jan, 2019 2 commits
  14. 18 Jan, 2019 1 commit
  15. 16 Jan, 2019 1 commit
    • Mike Bayer's avatar
      Use mysqlclient · 851bd217
      Mike Bayer authored
      The test requirement for MySQL-Python refers to a package that
      has had no releases since 2014 and no longer builds on some MySQL /
      MariaDB variants.  MySQL-Python has for years been superseded by
      the mysqlclient fork which is actively maintained.   mysqlclient
      may at some point be allowed to take over the MySQL-Python name
      as per PEP-541 however this hasn't happened yet.
      
      Change-Id: I67dd2338dc74e59c2deb2f1bd1b848e3c63e10e8
      851bd217
  16. 15 Jan, 2019 3 commits
    • Corey Bryant's avatar
      Use legacy_alter_table ON in sqlite recreate_table · 231a4d2a
      Corey Bryant authored
      Use "PRAGMA legacy_alter_table = ON" with sqlite >= 3.26 when
      using "ALTER TABLE RENAME TO migration_tmp" to maintain legacy
      behavior.
      
      As of sqlite version 3.26, when a table is renamed using
      "ALTER TABLE RENAME TO", REFERENCES clauses that refer to the
      table will be updated. To maintain legacy (3.24 and earlier)
      behavior, "PRAGMA legacy_alter_table" can be set to true and
      "PRAGMA foreign_keys" can be set to false. [1]
      
      [1] https://www.sqlite.org/src/info/ae9638e9c0ad0c36
      
      Thanks to "László Böszörményi (GCS)" <gcs@debian.org> for
      providing the code for this patch, which has since been
      slightly modified.
      
      Change-Id: I539988ab2ad6df6c8f423ecec15364ad8fcc7267
      Closes-Bug: 1807262
      231a4d2a
    • Zuul's avatar
      Merge "Add .eggs in .gitignore" · 8fd7226f
      Zuul authored
      8fd7226f
    • Zuul's avatar
      Merge "Remove py26 support" · fb138f6d
      Zuul authored
      fb138f6d