#27 move to supported python versions
Merged 3 months ago by lrossett. Opened 3 months ago by lrossett.

file modified
+1 -2
@@ -1,5 +1,4 @@ 

  import configparser

- import io

  

  defaults = """

  [sender]
@@ -9,7 +8,7 @@ 

  """

  

  config = configparser.ConfigParser()

- config.readfp(io.StringIO(defaults))

+ config.read_string(defaults)

  config.read(["/etc/ci-resultsdb-listener/listener.cfg", "./conf/listener.cfg"])

  

  

file modified
+1 -2
@@ -1,7 +1,6 @@ 

  # This is a common file where different test suites/linters can be configured.

  [tox]

- envlist = py36,py37,lint

- #,py38 does not work atm

+ envlist = py310,py311,py312,lint

  # If the user is missing an interpreter, don't fail

  skip_missing_interpreters = True

  

no initial comment

Pull-Request has been merged by lrossett

3 months ago
Metadata